We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 447155f commit a6b36b2Copy full SHA for a6b36b2
Makefile
@@ -1,10 +1,10 @@
1
# Just to make life a bit easier :P
2
3
setup:
4
- ./scripts/setup.sh
+ bash ./scripts/setup.sh
5
6
delete:
7
- ./scripts/setup_delete.sh
+ bash ./scripts/setup_delete.sh
8
9
update:
10
- ./scripts/update.sh
+ bash ./scripts/update.sh
scripts/setup.sh
@@ -32,8 +32,8 @@ Description=Feedr Bot Service
32
After=network.target
33
34
[Service]
35
-WorkingDirectory=${WORKDIR}/src
36
-ExecStart=${BUN_PATH} run index.ts
+WorkingDirectory=${WORKDIR}
+ExecStart=${BUN_PATH} run src/index.ts
37
Restart=on-failure
38
User=$USER
39
Environment=NODE_ENV=production
0 commit comments