Skip to content

Commit

Permalink
Comment out export.
Browse files Browse the repository at this point in the history
  • Loading branch information
fergmac committed Sep 25, 2024
1 parent 947d720 commit 63e4bb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ CMD sh -c "python3 manage.py migrate --noinput && \
./load_fixtures.sh all && \
python3 manage.py createinitialrevisions && \
python3 manage.py collectstatic --noinput && \
python3 manage.py export --cleanup=1 --upload=1 && \
# python3 manage.py export --cleanup=1 --upload=1 && \
python3 manage.py runserver 0.0.0.0:8000"

# RUN mkdir -p /app/staticfiles/admin/css && \
Expand Down
2 changes: 1 addition & 1 deletion backend/wells/management/commands/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def handle(self, *args, **options):
:param options: django managed options
"""
logger.info('starting export')
zip_filename = '/tmp/gwells.zip'
zip_filename = 'gwells.zip'
spreadsheet_filename = 'gwells.xlsx'
for version_desc in self.versioning_descriptor:
version = version_desc['version']
Expand Down

0 comments on commit 63e4bb1

Please sign in to comment.