Add Dockerfile (#33)

* add Dockerfile

* update Readme.md

* Fixed : Docker log file

* Update vite.config.ts
This commit is contained in:
Void
2023-02-16 13:39:07 +08:00
committed by GitHub
parent e9db25a970
commit 6646695849
4 changed files with 46 additions and 0 deletions

11
start.sh Normal file
View File

@@ -0,0 +1,11 @@
cd ./service
nohup pnpm start > service.log &
echo "Start service complete!"
cd ..
echo "" > front.log
nohup pnpm dev > front.log &
echo "Start front complete!"
tail -f front.log