legacy instructions changes

This commit is contained in:
Damien HENRY 2022-06-10 12:37:57 +00:00
parent 08887dcf59
commit e4f311b8a6

View File

@ -16,10 +16,15 @@ Legacy or Docker
### Legacy ### Legacy
``` ```
# get sources
git clone https://github.com/mydraft-cc/server-node.git --recursive
cd server-node
# Required # Required
./patch.sh ./patch.sh
# if you want to remove UserReport from the application : # if you want to remove UserReport from the application :
# ./patch.sh "optional" # ./patch.sh "optional"
# execute once only to install npm packages and to build ui
cd ui && npm install && npm run build && mkdir ../server/{public,data} && cp -R build/* ../server/public/ && cd ..
cd server && ./start.sh cd server && ./start.sh
#You could set environment parameters in server/start.sh #You could set environment parameters in server/start.sh
``` ```