Skip to content

Commit

Permalink
Don't need fastly key for dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mnazzaro committed Feb 20, 2024
1 parent cce0e4f commit e7058c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ConversionContainer/source/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
SQLALCHEMY_DATABASE_URI = CLASSIC_DATABASE_URI
SQLALCHEMY_BINDS = { 'latexml': LATEXML_DB_URI }

FASTLY_PURGE_KEY = os.environ['FASTLY_PURGE_KEY']
FASTLY_PURGE_KEY = os.environ.get('FASTLY_PURGE_KEY', 'no-key-dev')
IS_DEV = os.environ.get('IS_DEV', True)

LOCK_DIR = '/arxiv/locks'

0 comments on commit e7058c3

Please sign in to comment.