mirror of
https://github.com/YunoHost-Apps/flohmarkt_ynh.git
synced 2024-09-03 18:36:30 +02:00
install correction
This commit is contained in:
parent
e29eb3c75f
commit
2df60130ba
2 changed files with 10 additions and 4 deletions
|
@ -46,12 +46,15 @@ I also announced this work on the [yunohost forum](https://forum.yunohost.org/t/
|
||||||
* ~~nginx just reverse proxy~~ done
|
* ~~nginx just reverse proxy~~ done
|
||||||
* disable http (without s)
|
* disable http (without s)
|
||||||
* remove script
|
* remove script
|
||||||
* backup script (export flohmarkt data from couchdb)
|
* backup script
|
||||||
|
* export flohmarkt data from couchdb
|
||||||
|
* backup yunohost.app/$app
|
||||||
|
* check whether app settings are stored by yunohost framework (password, etc.)
|
||||||
|
|
||||||
### → 0.1 alpha
|
### → 0.1 alpha
|
||||||
* disable path selection and mark it that it needs its own domain.
|
* ~~disable path selection and mark it that it needs its own domain.~~
|
||||||
* tag 0.1 alpha
|
* tag 0.1 alpha
|
||||||
* write limitations in README.md
|
* write limitations in README.md (copy from `antifeatures` in manifest.toml)
|
||||||
|
|
||||||
### → 0.2 beta
|
### → 0.2 beta
|
||||||
* restore script
|
* restore script
|
||||||
|
|
|
@ -88,7 +88,10 @@ ynh_add_config --template="../conf/flohmarkt.conf" --destination="$install_dir/$
|
||||||
source "$install_dir/venv/bin/activate"
|
source "$install_dir/venv/bin/activate"
|
||||||
set -o nounset
|
set -o nounset
|
||||||
cd "$install_dir/$app"
|
cd "$install_dir/$app"
|
||||||
python3 initialize_couchdb.py bla42fasel bla42fasel
|
# initialize_couchdb seems to re-try on connect problems endlessly blocking the yunohost api
|
||||||
|
# @@ todo take care of this
|
||||||
|
#
|
||||||
|
python3 initialize_couchdb.py $password_couchdb_admin $password_couchdb_flohmarkt
|
||||||
)
|
)
|
||||||
|
|
||||||
# SETUP LOGROTATE
|
# SETUP LOGROTATE
|
||||||
|
|
Loading…
Reference in a new issue