generated from nyu-software-engineering/containerized-app-exercise
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from software-students-fall2023/ci
ci
- Loading branch information
Showing
11 changed files
with
110 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: CI/CD Pipeline | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build-and-push: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
|
||
- name: Build and Push Images using Docker Compose | ||
env: | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
MONGO_DBNAME: ${{ secrets.MONGO_DBNAME }} | ||
MONGO_URI: ${{ secrets.MONGO_URI }} | ||
FLASK_APP: ${{ secrets.FLASK_APP }} | ||
APP_SECRET_KEY: ${{ secrets.APP_SECRET_KEY }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
S3_BUCKET_NAME: ${{ secrets.S3_BUCKET_NAME }} | ||
HOST: ${{ secrets.HOST }} | ||
run: | | ||
docker-compose build | ||
docker-compose push | ||
working-directory: ./ | ||
|
||
deploy: | ||
needs: build-and-push | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.11"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Deploy to DigitalOcean | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.DROPLET_IP }} | ||
username: ${{ secrets.DROPLET_USER }} | ||
key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
script: | | ||
cd 4-containerized-app-exercise-wacotacotruck/ | ||
docker container prune -f | ||
docker image prune -f | ||
docker volume prune -f | ||
docker-compose pull | ||
docker-compose down | ||
docker-compose up -d |
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ <h2>Posted by: {{ post.username }}</h2> | |
</div> | ||
</div> | ||
<script src="../static/script.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/index.browser.min.js"></script> | ||
<script type="module" src="https://cdn.jsdelivr.net/npm/[email protected]/build/index.browser.min.js"></script> | ||
</body> | ||
</html> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,6 +77,6 @@ <h3>Instructions</h3> | |
var currentUserID = "{{ user_id }}"; | ||
</script> | ||
<script src="../static/script.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/index.browser.min.js"></script> | ||
<script type="module" src="https://cdn.jsdelivr.net/npm/[email protected]/build/index.browser.min.js"></script> | ||
</body> | ||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ <h1> You have to MIDI files, get to creating!</h1> | |
</div> | ||
</div> | ||
<script src="../static/script.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/index.browser.min.js"></script> | ||
<script type="module" src="https://cdn.jsdelivr.net/npm/[email protected]/build/index.browser.min.js"></script> | ||
</body> | ||
</html> | ||
|