mirror of
https://github.com/kennethreitz-archive/musicsaver.git
synced 2026-06-20 07:20:58 +00:00
38 lines
745 B
INI
38 lines
745 B
INI
# This is an example epio.ini file.
|
|
# We suggest you edit it to fit your application's needs.
|
|
# Documentation for the options is available at www.ep.io/docs/epioini/
|
|
|
|
[wsgi]
|
|
entrypoint = musicsaver:app
|
|
requirements = reqs.txt
|
|
|
|
|
|
[static]
|
|
|
|
# Serve the static directory directly as /static
|
|
musicsaver/static = static
|
|
|
|
|
|
[services]
|
|
|
|
# Uncomment to enable the PostgreSQL service.
|
|
postgres = true
|
|
|
|
|
|
[checkout]
|
|
|
|
# By default your code is put in a directory called 'app'.
|
|
# You can change that here.
|
|
# directory_name = my_project
|
|
|
|
|
|
[env]
|
|
|
|
# Set any additional environment variables here. For example:
|
|
# IN_PRODUCTION = true
|
|
|
|
|
|
[symlinks]
|
|
|
|
# Any symlinks you'd like to add. As an example, link 'config.py' to 'configs/epio.py'
|
|
# config.py = configs/epio.py |