This project was created with express-generator-typescript.
Run the server in development mode.
Run all unit-tests with hot-reloading.
Run a single unit-test.
Run all unit-tests without hot-reloading.
Check for linting errors.
Build the project for production.
Run the production build (Must be built first).
Run production build with a different env file.
- If
npm run devgives you issues with bcrypt on MacOS you may need to run:npm rebuild bcrypt --build-from-source.
In the root folder of the repo create a virtual environment
python -m venv python
cd python
source bin/activateInstall dependencies
python -m pip install -r requirements.txtRun the server
bin/python -m uvicorn main:app --reload