Skip to content

Update django_CICD.yml #26

Update django_CICD.yml

Update django_CICD.yml #26

Workflow file for this run

name: Django CI/CD
on:
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
working-directory: aiServer
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create secrets.json
uses: jsdaniell/[email protected]
with:
name: "secrets.json"
json: ${{ secrets.SECRETS }}
- name: Deploy to EC2
env:
EC2_HOST: ${{ secrets.EC2_HOST }}
EC2_USER: ubuntu
EC2_KEY: ${{ secrets.EC2_KEY }}
run: |
echo "$EC2_KEY" > key.pem
chmod 400 key.pem
scp -o StrictHostKeyChecking=no -i key.pem -r ./aiServer $EC2_USER@$EC2_HOST:/home/ubuntu/
scp -o StrictHostKeyChecking=no -i key.pem ./secrets.json $EC2_USER@$EC2_HOST:/home/ubuntu/aiServer/
ssh -o StrictHostKeyChecking=no -i key.pem $EC2_USER@$EC2_HOST << EOF
cd /home/ubuntu/aiServer
if [ ! -d "venv" ]; then
python3 -m venv venv
fi
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
python manage.py collectstatic --noinput
python manage.py migrate
if pgrep gunicorn; then
pkill gunicorn
fi
nohup gunicorn --bind 0.0.0.0:8000 aiServer.wsgi:application \
--workers 3 \
--timeout 120 \
--access-logfile /home/ubuntu/aiServer/logs/gunicorn-access.log \
--error-logfile /home/ubuntu/aiServer/logs/gunicorn-error.log &
sudo systemctl restart nginx
EOF
rm key.pem