I'm trying crate OKR system
Api and ui use env variables. Before building projects you should create in the root of each project .env file and fill them with corresponding values from .env.example.
In this repository there are two worksapces:
- ui - frontend
- api - backend
- shared - shared code. ACL, dto etc
Before building other projects run the following commands from the root
yarn install
To run the application, run the following commands:
cd ./packages/ui
yarn run serve
To run the application, run the following commands:
cd ./packages/api
docker-compose up
yarn run start:dev
To run all application in dev mod, run the following commands:
cd ./packages/api
docker-compose up
cd ../
yarn dev