mirror of
https://github.com/YunoHost-Apps/shiori_ynh.git
synced 2024-09-03 20:26:17 +02:00
Fix
This commit is contained in:
parent
ef6e9fd24b
commit
b6605e506d
3 changed files with 15 additions and 5 deletions
|
@ -8,6 +8,7 @@ Type=simple
|
||||||
User=__APP__
|
User=__APP__
|
||||||
Group=__APP__
|
Group=__APP__
|
||||||
WorkingDirectory=__FINALPATH__/
|
WorkingDirectory=__FINALPATH__/
|
||||||
|
ExecStart=__FINALPATH__/shiori migrate
|
||||||
ExecStart=__FINALPATH__/shiori serve --port __PORT__ --webroot __PATH__
|
ExecStart=__FINALPATH__/shiori serve --port __PORT__ --webroot __PATH__
|
||||||
Restart=always
|
Restart=always
|
||||||
Environment="SHIORI_DIR=__DATADIR__"
|
Environment="SHIORI_DIR=__DATADIR__"
|
||||||
|
|
|
@ -101,13 +101,13 @@ chmod -R o-rwx "$datadir"
|
||||||
chown -R $app:www-data "$datadir"
|
chown -R $app:www-data "$datadir"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# INSTALL THE SHIORI
|
# MIGRATE DATABASE
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Migrate database..." --weight=10
|
# ynh_script_progression --message="Migrate database..." --weight=10
|
||||||
|
|
||||||
pushd $final_path
|
# pushd $final_path
|
||||||
./shiori migrate
|
# ./shiori migrate
|
||||||
popd
|
# popd
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# SETUP SYSTEMD
|
# SETUP SYSTEMD
|
||||||
|
|
|
@ -76,6 +76,15 @@ chmod -R o-rwx "$final_path"
|
||||||
chown -R $app:www-data "$final_path"
|
chown -R $app:www-data "$final_path"
|
||||||
chmod +x "$final_path/shiori"
|
chmod +x "$final_path/shiori"
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# MIGRATE DATABASE
|
||||||
|
#=================================================
|
||||||
|
ynh_script_progression --message="Migrate database..." --weight=10
|
||||||
|
|
||||||
|
# pushd $final_path
|
||||||
|
# ./shiori migrate
|
||||||
|
# popd
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# NGINX CONFIGURATION
|
# NGINX CONFIGURATION
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Add table
Reference in a new issue