Skip to content

Commit

Permalink
allow extension
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Feb 26, 2024
1 parent 66c6e29 commit e5aafce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wizard/wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
POSTGREST_URL = os.getenv("POSTGREST_URL", "http://localhost:3000")
POSTGREST_TOKEN = os.getenv("POSTGREST_TOKEN")
TO_PARQUET = os.getenv("TO_PARQUET", 'False').lower() in ('true', '1', 't')
ACCEPTED_EXTENSIONS = os.getenv("ACCEPTED_EXTENSIONS", '.csv,.pos,.gpx,.txt,.log').split(',')
ACCEPTED_EXTENSIONS = os.getenv("ACCEPTED_EXTENSIONS", '.csv,.pos,.gpx,.txt,.log,.xslx').split(',')
ACCEPTED_EXTENSIONS += [ext.upper() for ext in ACCEPTED_EXTENSIONS]
DATA_PATH = pathlib.Path(os.getenv("DATA_PATH", '/data/'))

Expand Down

0 comments on commit e5aafce

Please sign in to comment.