More scriptish name

This commit is contained in:
Benjamin Bohard 2020-04-02 16:41:14 +02:00
parent 1e88a5eab0
commit 99168f5715
3 changed files with 1 additions and 3 deletions

View File

@ -4,6 +4,6 @@ setup(
name='risotto',
version='0.1',
packages=['risotto' ],
scripts=['script/risotto_server.py'],
scripts=['script/risotto-server'],
package_dir={"": "src"},
)

View File

@ -5,8 +5,6 @@ CONFIGURATION_DIR = 'configurations'
PROVIDER_FACTORY_CONFIG_DIR = environ.get('PROVIDER_FACTORY_CONFIG_DIR', 'factory')
TMP_DIR = 'tmp'
DEFAULT_USER = environ.get('DEFAULT_USER', 'Anonymous')
#DEFAULT_DSN = environ.get('DEFAULT_DSN', 'postgres:///risotto?host=/var/run/postgresql/&user=risotto')
#DEFAULT_TIRAMISU_DSN = environ.get('DEFAULT_TIRAMISU_DSN', 'postgres:///tiramisu?host=/var/run/postgresql/&user=tiramisu')
RISOTTO_DB_NAME = environ.get('RISOTTO_DB_NAME', 'risotto')
RISOTTO_DB_PASSWORD = environ.get('RISOTTO_DB_PASSWORD', 'risotto')
RISOTTO_DB_USER = environ.get('RISOTTO_DB_USER', 'risotto')