Skip to content

Commit 09d8d27

Browse files
Merge branch 'main' into develop
2 parents b37f7dc + ba9ffdf commit 09d8d27

9 files changed

+46
-13
lines changed

.github/workflows/cd-deploy.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 }}

appspec.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ os: linux
44
# In this case we copy all the files of the project to the EC2
55
files:
66
- source: /
7-
destination: /home/ubuntu/api
7+
destination: /home/ubuntu/piggy-wallet-backend
88

99
# If a file already exists in the destination, it will be OVERWRITTEN
1010
file_exists_behavior: OVERWRITE

docker-compose.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,21 @@ services:
66
image: postgres:latest
77
volumes:
88
- postgres_data:/var/lib/postgresql/data
9-
environment:
10-
POSTGRES_HOST_AUTH_METHOD: trust
119
ports:
1210
- "5432:5432"
1311
networks:
1412
- 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}
1519

1620
web:
1721
build:
1822
context: .
19-
dockerfile: Dev.Dockerfile
23+
dockerfile: Dockerfile
2024
container_name: web
2125
volumes:
2226
- .:/app
@@ -33,7 +37,7 @@ services:
3337
POSTGRES_PORT: ${DB_PORT}
3438
POSTGRES_HOST: ${DB_HOST}
3539
OPENAI_API_KEY: ${OPENAI_API_KEY}
36-
DJANGO_SETTINGS_MODULE: piggywallet.settings.dev
40+
DJANGO_SETTINGS_MODULE: piggywallet.settings.prod
3741

3842
networks:
3943
app_network:

playground/tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ class HelloWorldTest(TestCase):
66
def test_hello_world(self):
77
response = self.client.get(reverse("hello-world"))
88
self.assertEqual(response.status_code, 200)
9-
self.assertContains(response, "Hello World!")
9+
self.assertContains(response, "Hello World")

playground/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def hello_world(request):
5-
return JsonResponse({"message": "Hello World!"})
5+
return JsonResponse({"message": "Hello World"})

scripts/after_install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# !/bin/bash
2-
cd /home/ubuntu/api
2+
cd /home/ubuntu/piggy-wallet-backend
33

44
echo "Running After Start Script ..."

scripts/application_start.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# !/bin/bash
2-
cd /home/ubuntu/api
2+
cd /home/ubuntu/piggy-wallet-backend
33

44
echo "Starting service ..."
5-
docker compose up -d
5+
sudo docker compose up -d --build

scripts/application_stop.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# !/bin/bash
2-
cd /home/ubuntu/api
2+
cd /home/ubuntu/piggy-wallet-backend
33

44
echo "Stopping service ..."
5-
docker compose down
5+
sudo docker compose down

scripts/validate_service.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# !/bin/bash
2-
cd /home/ubuntu/api
2+
cd /home/ubuntu/piggy-wallet-backend
33

44
echo "Validating service is Up ..."

0 commit comments

Comments
 (0)