1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tandoor_ynh.git synced 2024-09-03 20:35:56 +02:00

Fix path to sources in config files

This commit is contained in:
Salamandar 2024-01-27 17:01:58 +01:00
parent 319deb9cfc
commit 9462bde387
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ SHOPPING_MIN_AUTOSYNC_INTERVAL=5
# If staticfiles are stored at a different location uncomment and change accordingly, MUST END IN / # If staticfiles are stored at a different location uncomment and change accordingly, MUST END IN /
# this is not required if you are just using a subfolder # this is not required if you are just using a subfolder
# This can either be a relative path from the applications base path or the url of an external host # This can either be a relative path from the applications base path or the url of an external host
#sub_path_only STATIC_URL=__INSTALL_DIR__/static/ #sub_path_only STATIC_URL=__INSTALL_DIR__/source/static/
# If mediafiles are stored at a different location uncomment and change accordingly, MUST END IN / # If mediafiles are stored at a different location uncomment and change accordingly, MUST END IN /
# this is not required if you are just using a subfolder # this is not required if you are just using a subfolder

View file

@ -6,7 +6,7 @@ After=network.target
Type=simple Type=simple
User=__APP__ User=__APP__
Group=__APP__ Group=__APP__
WorkingDirectory=__INSTALL_DIR__/ WorkingDirectory=__INSTALL_DIR__/source/
EnvironmentFile=__INSTALL_DIR__/.env EnvironmentFile=__INSTALL_DIR__/.env
ExecStart=__INSTALL_DIR__/venv/bin/gunicorn --bind 127.0.0.1:__PORT__ recipes.wsgi:application ExecStart=__INSTALL_DIR__/venv/bin/gunicorn --bind 127.0.0.1:__PORT__ recipes.wsgi:application
Restart=on-failure Restart=on-failure