Clean up .gitignore #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/ci-cd-pipeline.yml | |
name: CI/CD Pipeline | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
env: | |
DJANGO_SECRET_KEY: ${{ secrets.DJANGO_SECRET_KEY }} | |
POSTGRES_USER: ${{ secrets.POSTGRES_USER }} | |
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} | |
POSTGRES_DB: ${{ secrets.POSTGRES_DB }} | |
POSTGRES_HOST: ${{ secrets.POSTGRES_HOST }} | |
DJANGO_DEBUG: "True" | |
DJANGO_SECURE_SSL_REDIRECT: "False" | |
DJANGO_SECURE_HSTS_SECONDS: 0 | |
DJANGO_SECURE_HSTS_INCLUDE_SUBDOMAINS: "False" | |
DJANGO_SECURE_HSTS_PRELOAD: "False" | |
DJANGO_SESSION_COOKIE_SECURE: "False" | |
DJANGO_CSRF_COOKIE_SECURE: "False" | |
MDB_PRO_KEY: ${{ secrets.MDB_PRO_KEY }} | |
AWS_REGION: us-west-2 | |
services: | |
postgres: | |
image: postgres:13 | |
env: | |
POSTGRES_USER: ${{ secrets.POSTGRES_USER }} | |
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} | |
POSTGRES_DB: ${{ secrets.POSTGRES_DB }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Cache Docker layers | |
uses: actions/cache@v2 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: ${{ runner.os }}-buildx- | |
- name: Create .env file | |
run: | | |
echo "DJANGO_SECRET_KEY=${{ secrets.DJANGO_SECRET_KEY }}" >> .env | |
echo "POSTGRES_USER=${{ secrets.POSTGRES_USER }}" >> .env | |
echo "POSTGRES_PASSWORD=${{ secrets.POSTGRES_PASSWORD }}" >> .env | |
echo "POSTGRES_DB=${{ secrets.POSTGRES_DB }}" >> .env | |
echo "POSTGRES_HOST=${{ secrets.POSTGRES_HOST }}" >> .env | |
echo "MDB_PRO_KEY=${{ secrets.MDB_PRO_KEY }}" >> .env | |
- name: Build Docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: false | |
load: true | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Start Docker Compose services | |
run: docker-compose up -d | |
- name: Run backend tests | |
run: docker-compose run web pytest | |
- name: Add MDB API Key | |
run: docker-compose exec -T web python manage.py addapikey | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "20.x" | |
- name: Cache Node.js modules | |
uses: actions/cache@v2 | |
with: | |
path: ./frontend/node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install Node.js dependencies | |
run: npm install | |
working-directory: ./frontend/ | |
- name: Run frontend tests | |
run: npm test | |
working-directory: ./frontend/ | |
- name: Remove MDB API Key | |
run: docker-compose exec -T web python manage.py removeapikey | |
- name: Docker Hub Login | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
logout: True | |
- name: Build Docker image | |
run: docker build -t mastertheorem-aws . | |
- name: Tag Docker image | |
run: docker tag mastertheorem-aws:latest drcbeatz/mastertheorem-aws:latest | |
- name: Push to Docker Hub | |
run: docker push drcbeatz/mastertheorem-aws:latest | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.9" | |
- name: Install EB CLI and Deploy | |
run: | | |
pip install awsebcli --upgrade | |
eb use mastertheorem-aws-dev --region ${{ env.AWS_REGION }} | |
eb deploy --staged --region ${{ env.AWS_REGION }} | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
- name: Clean up | |
run: docker-compose down |