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

Create release 0.1.8e #130

Merged
merged 33 commits into from
Oct 19, 2023
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
9a7e769
Link question service (#79)
ong6 Oct 11, 2023
c54046b
refactor: Remove wildcard import in questions data table
ckcherry23 Oct 11, 2023
df277e3
Add PRISMA prefix for env variables of prisma database (#92)
yhtMinceraft1010X Oct 12, 2023
d0b916b
Auth checker and logged in nav bar (#91)
ckcherry23 Oct 12, 2023
b14773b
Collaboration service real time (#57)
gycgabriel Oct 14, 2023
4ea7b1d
Deployment enhancement (#84)
yhtMinceraft1010X Oct 14, 2023
80a5714
Fix frontend JSON loading
yhtMinceraft1010X Oct 15, 2023
1833e41
Collaboration Save Attempt (#97)
gycgabriel Oct 15, 2023
a12bda4
Link Matching Service (#90)
ong6 Oct 15, 2023
8c830be
Fix permission issues for prod workflow (#100)
yhtMinceraft1010X Oct 15, 2023
6e6480d
Merge branch 'prod' into master
yhtMinceraft1010X Oct 16, 2023
e7c41ee
Add yarn install step in prod workflow (#103)
yhtMinceraft1010X Oct 16, 2023
d476ea7
Remove _PROD suffix from env variables in prod workflow (#105)
yhtMinceraft1010X Oct 16, 2023
2bb9d27
Use working-directory in steps (#107)
yhtMinceraft1010X Oct 16, 2023
290195b
Change Docker build context (#110)
yhtMinceraft1010X Oct 16, 2023
a9d7630
Fix TypeScript compilation issues (#112)
yhtMinceraft1010X Oct 16, 2023
0fff51b
Change Docker configuration in prod workflow (#114)
yhtMinceraft1010X Oct 17, 2023
f52cbc3
Merge branch 'prod' into master
yhtMinceraft1010X Oct 17, 2023
e0d92bd
Add token_format to prod workflow (#116)
yhtMinceraft1010X Oct 17, 2023
addfb34
fix FE build issues
ong6 Oct 17, 2023
4d6a162
updated scripts
ong6 Oct 17, 2023
f443cf5
fix ddos problems
ong6 Oct 17, 2023
a5b1908
Add docker volumes. Also fix gateway issue
chunweii Oct 17, 2023
e426577
Fix prod Docker image building bugs (#119)
yhtMinceraft1010X Oct 17, 2023
2bd1246
Merge branch 'prod' into master
yhtMinceraft1010X Oct 17, 2023
0388bf0
improve homepage
ong6 Oct 18, 2023
a24badf
Pass env var into frontend prod image at build time (#125)
yhtMinceraft1010X Oct 18, 2023
bd5eaed
Merge branch 'prod' into master
yhtMinceraft1010X Oct 18, 2023
b5bb0a5
linked question service
ong6 Oct 18, 2023
52cfbb0
add auto leave match logic
ong6 Oct 18, 2023
80efdd4
Change the way JSON secrets are passed into Kubernetes (#127)
yhtMinceraft1010X Oct 19, 2023
1efeca0
Replace printf with echo (#129)
yhtMinceraft1010X Oct 19, 2023
5939099
Merge branch 'prod' into master
yhtMinceraft1010X Oct 19, 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
4 changes: 2 additions & 2 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
# Copy the JSON secrets (Firebase configs) into JSON files
- name: Copy JSON secrets into JSON files
run: |-
printf "$FIREBASE_SERVICE_ACCOUNT" > ./firebase_service_account.json
printf "$NEXT_PUBLIC_FRONTEND_FIREBASE_CONFIG" > ./next_public_frontend_firebase_config.json
echo -n "$FIREBASE_SERVICE_ACCOUNT" > ./firebase_service_account.json
echo -n "$NEXT_PUBLIC_FRONTEND_FIREBASE_CONFIG" > ./next_public_frontend_firebase_config.json

# Set the secrets that are used as env variables in the manifest files
- name: Set kubectl secrets
Expand Down