-
Notifications
You must be signed in to change notification settings - Fork 2
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 #35 from CS3219-AY2425S1/titus/add-cicd-docker-com…
…pose chore: add cicd docker compose
- Loading branch information
Showing
8 changed files
with
93 additions
and
25 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,74 @@ | ||
name: Run Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- staging | ||
pull_request: | ||
branches: | ||
- main | ||
- staging | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Docker Compose | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y docker-compose | ||
- name: Create Environment Files | ||
env: | ||
QUESTION_SERVICE_URL: ${{ vars.QUESTION_SERVICE_URL }} | ||
USER_SERVICE_URL: ${{ vars.USER_SERVICE_URL }} | ||
JWT_SECRET: ${{ secrets.JWT_SECRET }} | ||
FIREBASE_CREDENTIAL_PATH: ${{ vars.QUESTION_SERVICE_FIREBASE_CREDENTIAL_PATH }} | ||
DB_CLOUD_URI: ${{ secrets.USER_SERVICE_DB_CLOUD_URI }} | ||
USER_SERVICE_PORT: ${{ vars.USER_SERVICE_PORT }} | ||
run: | | ||
cd ./apps/frontend | ||
echo "NEXT_PUBLIC_QUESTION_SERVICE_URL=$QUESTION_SERVICE_URL" >> .env | ||
echo "NEXT_PUBLIC_USER_SERVICE_URL=$USER_SERVICE_URL" >> .env | ||
cd ../question-service | ||
echo "FIREBASE_CREDENTIAL_PATH=$FIREBASE_CREDENTIAL_PATH" >> .env | ||
echo "JWT_SECRET=$JWT_SECRET" >> .env | ||
cd ../user-service | ||
echo "DB_CLOUD_URI=$DB_CLOUD_URI" >> .env | ||
echo "PORT=$USER_SERVICE_PORT" >> .env | ||
echo "JWT_SECRET=$JWT_SECRET" >> .env | ||
- name: Create Database Credential Files | ||
env: | ||
FIREBASE_JSON: ${{ secrets.QUESTION_SERVICE_FIREBASE_CREDENTIAL }} | ||
FIREBASE_CREDENTIAL_PATH: ${{ vars.QUESTION_SERVICE_FIREBASE_CREDENTIAL_PATH }} | ||
run: | | ||
cd ./apps/question-service | ||
echo "$FIREBASE_JSON" > "./$FIREBASE_CREDENTIAL_PATH" | ||
- name: Build and Run Services | ||
run: | | ||
cd ./apps | ||
docker-compose up --build -d | ||
- name: Wait for services to be ready | ||
run: sleep 30 | ||
|
||
- name: Run Tests | ||
env: | ||
FRONTEND_URL: ${{ vars.FRONTEND_URL }} | ||
USER_SERVICE_URL: ${{ vars.USER_SERVICE_URL }} | ||
QUESTION_SERVICE_URL: ${{ vars.QUESTION_SERVICE_URL }} | ||
run: | | ||
curl -sSL -o /dev/null $QUESTION_SERVICE_URL | ||
curl -fsSL -o /dev/null $USER_SERVICE_URL | ||
curl -fsSL -o /dev/null $FRONTEND_URL | ||
# We can add more tests here |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Replace with the corresponding url, credentials and endpoint | ||
# URL endpoints of the services | ||
NEXT_PUBLIC_QUESTION_SERVICE_URL="http://localhost:8080/" | ||
NEXT_PUBLIC_USER_SERVICE_URL="http://localhost:3001/" |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# Mongo DB connection URL | ||
DB_CLOUD_URI=<CONNECTION_STRING> | ||
DB_LOCAL_URI=mongodb://127.0.0.1:27017/peerprepUserServiceDB | ||
PORT=3001 | ||
|
||
# Will use cloud MongoDB Atlas database | ||
ENV=PROD | ||
# Port for the user-service | ||
PORT=3001 | ||
|
||
# Secret for creating JWT signature | ||
JWT_SECRET=you-can-replace-this-with-your-own-secret |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.