Skip to content

Commit 0c6de2c

Browse files
committed
update
1 parent 25701d4 commit 0c6de2c

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

deploy.sh

+10-13
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,10 @@
33
# Go to the user's home directory
44
cd /home/$AWS_USERNAME/$REPOSITORY_NAME
55

6-
# If the repository directory doesn't exist, clone it
7-
# if [ ! -d "$APP_NAME" ]; then
8-
# git clone $REPOSITORY_URL
9-
# fi
10-
11-
# Navigate to the repository directory (which is now guaranteed to exist)
12-
# cd $REPOSITORY_NAME
13-
6+
# Tidy go environment
147
echo "Tidy go env"
158
go mod tidy
9+
1610
# Build the Go application
1711
echo "Start build"
1812
go build -o $APP_NAME .
@@ -23,15 +17,18 @@ if [ -e "/etc/systemd/system/$APP_NAME.service" ]; then
2317
echo "Service already exists"
2418
echo "Deleting old service"
2519
sudo rm -rf /etc/systemd/system/$APP_NAME.service
20+
fi
2621

27-
if [ ! -e "/etc/systemd/system/$APP_NAME.service" ]; then
28-
echo "Creating new service."
29-
sudo bash -c "cat > /etc/systemd/system/$APP_NAME.service" <<EOF
22+
# Write a new service file
23+
echo "Creating new service."
24+
sudo bash -c "cat > /etc/systemd/system/$APP_NAME.service" <<EOF
3025
[Unit]
3126
Description=$APP_NAME Service
3227
After=network.target
3328
3429
[Service]
30+
Environment="MONGODB_URI=$MONGODB_URI"
31+
Environment="SECRET_KEY=$SECRET_KEY"
3532
ExecStart=/home/$AWS_USERNAME/$REPOSITORY_NAME/$APP_NAME
3633
WorkingDirectory=/home/$AWS_USERNAME/$REPOSITORY_NAME
3734
User=$AWS_USERNAME
@@ -41,14 +38,14 @@ Restart=always
4138
[Install]
4239
WantedBy=multi-user.target
4340
EOF
44-
fi
41+
4542
echo "Service created"
4643

44+
# Reload and start the service
4745
echo "Restart daemon"
4846
sudo systemctl daemon-reload
4947

5048
echo "Start service"
51-
# Start the application service
5249
sudo systemctl start $APP_NAME
5350

5451
# Enable the application service

0 commit comments

Comments
 (0)