File tree 9 files changed +46
-13
lines changed
9 files changed +46
-13
lines changed Original file line number Diff line number Diff line change
1
+ name : CD Deploy
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ jobs :
9
+ deploy :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Configure AWS credentials
13
+ uses : aws-actions/configure-aws-credentials@v1
14
+ with :
15
+ aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
16
+ aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
17
+ aws-region : us-east-2
18
+ - name : Deploy application
19
+ id : deployApplicaiton
20
+ run : |
21
+ deploymentId=$(aws deploy create-deployment \
22
+ --application-name PiggyWallet-backend \
23
+ --deployment-config-name CodeDeployDefault.OneAtATime \
24
+ --deployment-group-name CodeDeployGitHubDemo-DepGrp \
25
+ --description "Automatic deployment of ${{github.sha}}" \
26
+ --github-location repository=Kalgoc/piggy-wallet-backend,commitId=${{github.sha}} | jq -r '.deploymentId')
27
+ echo "deploymentId=$deploymentId" >> $GITHUB_OUTPUT
28
+ - name : Wait for deployment to finish
29
+ run : aws deploy wait deployment-successful --deployment-id ${{ steps.deployApplicaiton.outputs.deploymentId }}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ os: linux
4
4
# In this case we copy all the files of the project to the EC2
5
5
files :
6
6
- source : /
7
- destination : /home/ubuntu/api
7
+ destination : /home/ubuntu/piggy-wallet-backend
8
8
9
9
# If a file already exists in the destination, it will be OVERWRITTEN
10
10
file_exists_behavior : OVERWRITE
Original file line number Diff line number Diff line change @@ -6,17 +6,21 @@ services:
6
6
image : postgres:latest
7
7
volumes :
8
8
- postgres_data:/var/lib/postgresql/data
9
- environment :
10
- POSTGRES_HOST_AUTH_METHOD : trust
11
9
ports :
12
10
- " 5432:5432"
13
11
networks :
14
12
- app_network
13
+ environment :
14
+ POSTGRES_DB : ${DB_NAME}
15
+ POSTGRES_USER : ${DB_USER}
16
+ POSTGRES_PASSWORD : ${DB_PASSWORD}
17
+ POSTGRES_PORT : ${DB_PORT}
18
+ POSTGRES_HOST : ${DB_HOST}
15
19
16
20
web :
17
21
build :
18
22
context : .
19
- dockerfile : Dev. Dockerfile
23
+ dockerfile : Dockerfile
20
24
container_name : web
21
25
volumes :
22
26
- .:/app
@@ -33,7 +37,7 @@ services:
33
37
POSTGRES_PORT : ${DB_PORT}
34
38
POSTGRES_HOST : ${DB_HOST}
35
39
OPENAI_API_KEY : ${OPENAI_API_KEY}
36
- DJANGO_SETTINGS_MODULE : piggywallet.settings.dev
40
+ DJANGO_SETTINGS_MODULE : piggywallet.settings.prod
37
41
38
42
networks :
39
43
app_network :
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ class HelloWorldTest(TestCase):
6
6
def test_hello_world (self ):
7
7
response = self .client .get (reverse ("hello-world" ))
8
8
self .assertEqual (response .status_code , 200 )
9
- self .assertContains (response , "Hello World! " )
9
+ self .assertContains (response , "Hello World" )
Original file line number Diff line number Diff line change 2
2
3
3
4
4
def hello_world (request ):
5
- return JsonResponse ({"message" : "Hello World! " })
5
+ return JsonResponse ({"message" : "Hello World" })
Original file line number Diff line number Diff line change 1
1
# !/bin/bash
2
- cd /home/ubuntu/api
2
+ cd /home/ubuntu/piggy-wallet-backend
3
3
4
4
echo " Running After Start Script ..."
Original file line number Diff line number Diff line change 1
1
# !/bin/bash
2
- cd /home/ubuntu/api
2
+ cd /home/ubuntu/piggy-wallet-backend
3
3
4
4
echo " Starting service ..."
5
- docker compose up -d
5
+ sudo docker compose up -d --build
Original file line number Diff line number Diff line change 1
1
# !/bin/bash
2
- cd /home/ubuntu/api
2
+ cd /home/ubuntu/piggy-wallet-backend
3
3
4
4
echo " Stopping service ..."
5
- docker compose down
5
+ sudo docker compose down
Original file line number Diff line number Diff line change 1
1
# !/bin/bash
2
- cd /home/ubuntu/api
2
+ cd /home/ubuntu/piggy-wallet-backend
3
3
4
4
echo " Validating service is Up ..."
You can’t perform that action at this time.
0 commit comments