Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: updated gitignore #899

Merged
merged 4 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/cd.dev.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Dev Branch Deployment
name: Dev Deployment

on:
push:
Expand All @@ -22,9 +22,12 @@ jobs:
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: |
cd boilerplate-python/dev/
git pull origin dev
source .venv/bin/activate
cd hng_boilerplate_python_fastapi_web
# git add .
# git stash
# git checkout dev
# git pull origin dev
source venv-dev/bin/activate
pip install -r requirements.txt
alembic upgrade head

echo "${{ secrets.PASSWORD }}" | sudo -S systemctl restart python-bp-dev.service
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,13 @@ celerybeat.pid
*.sage.py

# Environments
.env
.env*
!.env.sample
.venv
.blog_env/

env/
venv/
venv*
*venv/
ENV/
env.bak/
Expand Down Expand Up @@ -167,5 +168,3 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

test_case1.py
8 changes: 0 additions & 8 deletions t

This file was deleted.

Loading