Compare commits

...

2 commits

Author SHA1 Message Date
aldrin 6835240173 fix(deploy): Disable workbox import
This removes storage.googleapis.com from production package.
2021-05-12 09:20:56 +02:00
aldrin c4e547a30b fix(deploy): Disable dependencies
Package must not depend on non-existing deps (Debian Buster).
2021-05-12 09:19:17 +02:00
3 changed files with 10 additions and 5 deletions

6
debian/control vendored
View file

@ -8,7 +8,7 @@ Build-Depends:
dh-python,
python3-all,
python3-django (>= 2.2),
python3-djangorestframework,
# python3-djangorestframework,
# python3-djoser (>= 2.1),
python3-setuptools,
Standards-Version: 4.5.0
@ -31,6 +31,6 @@ Depends:
${python3:Depends},
python3-django (>= 2.2),
python3-django-imagekit,
python3-djangorestframework,
python3-djoser (>= 2.1),
# python3-djangorestframework,
# python3-djoser (>= 2.1),
Description: Python backend for the userausfall web application

View file

@ -12,8 +12,8 @@ setup(
packages=find_packages(),
install_requires=(
"django>=2.2<3.0",
"djangorestframework>=3.12<4.0",
"djoser>=2.1<3.0",
# "djangorestframework>=3.12<4.0",
# "djoser>=2.1<3.0",
),
include_package_data=True,
)

View file

@ -10,4 +10,9 @@ module.exports = {
},
},
},
pwa: {
workboxOptions: {
importWorkboxFrom: "disabled",
},
},
};