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

Biweekly Merge #450

Merged
merged 46 commits into from
Nov 9, 2023
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
19550ef
minor_typo corrected
callistox9 Oct 22, 2023
8b362d7
Merge pull request #416 from callistox9/typo_readme
TejasNair9977 Oct 22, 2023
7537299
added mock data for accred, org, infra, department, topics, modules, …
TejasNair9977 Oct 24, 2023
0628964
docker compose added for handling replicaSets
Gauravpadam Oct 26, 2023
b60d7c2
fixed dockerfile
TejasNair9977 Oct 27, 2023
7c49e5a
used mongo instead of bitnami
TejasNair9977 Oct 27, 2023
4c412ed
added .env back to dockerignore
TejasNair9977 Oct 28, 2023
5118489
Merge pull request #417 from Gauravpadam/20232610_docker_compose_for_…
TejasNair9977 Oct 28, 2023
cac9c58
added faker for courses and everything under
TejasNair9977 Oct 28, 2023
9fb5d9e
completed course additions for placeholder data
TejasNair9977 Oct 28, 2023
186eb66
Merge pull request #418 from tcet-opensource/414-filldbwithplaceholde…
kskarthik5 Oct 28, 2023
1c4b14d
Initialize-all-the-test-data-in-setup.js-using-spawn
Oct 29, 2023
57e05c8
Fixed the error while closing the child process
Oct 29, 2023
0f63d5b
feat: added validation to exam controller
Shubhangam333 Oct 29, 2023
ff1d374
Merge pull request #437 from tcet-opensource/feat-436-Initialize-all-…
TejasNair9977 Oct 29, 2023
80e0d14
made middleware more portable and usable
TejasNair9977 Oct 29, 2023
795addf
Merge pull request #438 from Shubhangam333/devteam
TejasNair9977 Oct 29, 2023
0b2046e
Rename EntityIdValidation.js to entityIdValidation.js
TejasNair9977 Oct 29, 2023
db5e13e
used middleware validate service for validating ids in controller's c…
Aastha-S-Rai Oct 31, 2023
eea7c70
Added validation for Student entity
harsh31dangi Oct 31, 2023
b5767ec
[Added]validation for group
shreyam462 Oct 31, 2023
61f8ac6
added validation for timetable
sumitst05 Nov 2, 2023
2ef73e0
fixed schema definition error in activity blueprint
sumitst05 Nov 2, 2023
15b64db
[added]
deepti-50 Nov 4, 2023
eb4bf72
Updated module.js
deepti-50 Nov 4, 2023
aab4309
Docker compose refining
Gauravpadam Nov 4, 2023
2461a04
fixed replica sets on docker-compose
TejasNair9977 Nov 5, 2023
6233d2b
added mocks for even more models
TejasNair9977 Nov 6, 2023
03684f0
Create deploy.yml
harshau007 Nov 6, 2023
403e24b
added all remaining mockDBs
TejasNair9977 Nov 6, 2023
a181113
resolved a stupid merge im so dumb
TejasNair9977 Nov 6, 2023
24d22da
fixed small error with activity
TejasNair9977 Nov 6, 2023
d98dfbe
Rename deploy.yml to dockerhub.yml
harshau007 Nov 7, 2023
b7b9c88
added a mongo memory server for testing
TejasNair9977 Nov 8, 2023
52d2fb0
Merge pull request #446 from tcet-opensource/mockhotfix
TejasNair9977 Nov 8, 2023
4af0b36
Merge branch 'development' into 20233110_docker_compose_refining
TejasNair9977 Nov 8, 2023
83418f3
Merge pull request #445 from Gauravpadam/20233110_docker_compose_refi…
TejasNair9977 Nov 8, 2023
1956e3b
Merge pull request #447 from harshau007/dockerhub-img-upload
TejasNair9977 Nov 8, 2023
81a3509
Merge pull request #444 from tcet-opensource/426-added-validation-for…
TejasNair9977 Nov 8, 2023
0f0e834
Merge pull request #440 from harsh31dangi/430-Student-Validation
TejasNair9977 Nov 8, 2023
22235ee
Merge pull request #439 from tcet-opensource/420-feat-add-validation-…
TejasNair9977 Nov 8, 2023
aabfee3
Merge pull request #441 from tcet-opensource/425-add-validation-for-g…
TejasNair9977 Nov 8, 2023
641e092
Merge branch 'development' into validation-for-timetable
TejasNair9977 Nov 8, 2023
7633aaf
Merge pull request #442 from tcet-opensource/validation-for-timetable
TejasNair9977 Nov 8, 2023
411b5a0
fixed all testcases
TejasNair9977 Nov 8, 2023
09824b0
Merge pull request #449 from tcet-opensource/testcasehotfix
TejasNair9977 Nov 8, 2023
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
Prev Previous commit
Next Next commit
Create deploy.yml
harshau007 authored Nov 6, 2023
commit 03684f06279c432a1288f85e11b0490d71bdb891
26 changes: 26 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Deploy

on:
push:
branches:
- main
- development
workflow_dispatch:

permissions:
contents: read

jobs:
test:
name: Testing files
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Building Docker Image
run: docker build -t ${{ secrets.username }}/erp-backend:prod .
- name: DockerHub Login
run: docker login -u ${{ secrets.username }} -p ${{ secrets.pass }}
- name: Uploading Image to DockerHub
run: docker push ${{ secrets.username }}/erp-backend:prod