-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Recnet-api backend service initilization #151
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
fix: shuffle users in search page and all-users page
a610ace
to
e5aa943
Compare
483a585
to
ec805f6
Compare
ec805f6
to
374a472
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, let's merge it and start API dev 🚀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we want to separate different prettier configs for different projects, I would suggest you move the .prettierrc
config file to the root of recnet-api
project.
Description
Create a project
recnet-api
as a backend service for recnet. The project is built by NestJS under nx. In this initial PR, I created aGET /health
endpoint for testing purpose.The code should be auto-deployed to AWS Elastic Beanstalk through the Codepipe line once merged to the master branch.
Related Issue
Create Nestjs backend and deploy to AWS
Notes
Dev Flow and CI
After discussing with @swh00tw , we decided to maintain a
recnet-api-dev
branch for merging dev environment. Once a new feature PR is merged, it will automatically deploy to our dev environment. If everything is good to go, I will create another PR to mergerecnet-api-dev
branch to merge tomaster
.Code build issue investigation
TL, DR
pnpm
installs node_modules with symlinks, so we'll need to addenable-symlink
in the build spec.AWS deployment issue
TODO