3
3
# Go to the user's home directory
4
4
cd /home/$AWS_USERNAME /$REPOSITORY_NAME
5
5
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
14
7
echo " Tidy go env"
15
8
go mod tidy
9
+
16
10
# Build the Go application
17
11
echo " Start build"
18
12
go build -o $APP_NAME .
@@ -23,15 +17,18 @@ if [ -e "/etc/systemd/system/$APP_NAME.service" ]; then
23
17
echo " Service already exists"
24
18
echo " Deleting old service"
25
19
sudo rm -rf /etc/systemd/system/$APP_NAME .service
20
+ fi
26
21
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
30
25
[Unit]
31
26
Description=$APP_NAME Service
32
27
After=network.target
33
28
34
29
[Service]
30
+ Environment="MONGODB_URI=$MONGODB_URI "
31
+ Environment="SECRET_KEY=$SECRET_KEY "
35
32
ExecStart=/home/$AWS_USERNAME /$REPOSITORY_NAME /$APP_NAME
36
33
WorkingDirectory=/home/$AWS_USERNAME /$REPOSITORY_NAME
37
34
User=$AWS_USERNAME
@@ -41,14 +38,14 @@ Restart=always
41
38
[Install]
42
39
WantedBy=multi-user.target
43
40
EOF
44
- fi
41
+
45
42
echo " Service created"
46
43
44
+ # Reload and start the service
47
45
echo " Restart daemon"
48
46
sudo systemctl daemon-reload
49
47
50
48
echo " Start service"
51
- # Start the application service
52
49
sudo systemctl start $APP_NAME
53
50
54
51
# Enable the application service
0 commit comments