alex 2024-01-13 21:06:25 +01:00
parent 24202861e5
commit 5e26ca203f
3 changed files with 13 additions and 1 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
build/
node_modules/
npm-debug.log
yarn-error.log
.env

7
commit_and_push.sh Executable file
View File

@ -0,0 +1,7 @@
git add *
read -p "Commit message: " commit_message
git commit -m "$commit_message"
git push -u origin main

View File

@ -1,2 +1,2 @@
screen -dmS customer-dashboard-api | exit 0 screen -dmS customer-dashboard-api | exit 0
screen -S customer-dashboard-api -p 0 -X stuff 'npm run dev\n' screen -S customer-dashboard-api -p 0 -X stuff 'npx tsc && node build/server.js\n'