HKN-UCSD / hkn-server

A member portal used by IEEE-HKN honor society members at the University of California, San Diego.
MIT License
5 stars 1 forks source link

HKN Portal Monorepo

All code related to the HKN portal belongs here.

Portal Link: https://portal.hknucsd.com/

Frontend And Backend READMEs And Guides:

Quick Access To Guides:

To Install Dependencies

Do this before you build/start the project!

Check if you have node version 12.14.0. Then, run...

cd frontend; npm i; cd ../backend; npm i; cd ..

To Start Fullstack

docker compose up

To Rebuild Containers From Images

docker compose up --build

To Remove Containers

docker compose down

To Develop Frontend In Isolation

Make sure that the api url in your .env file points to our hosted dev-api server if you'd like to develop frontend in isolation

cd frontend; npm run start