Quick run instructions
-
Backend
- cd Backend
- copy
.env.exampleto.envand updateMONGO_URIif required - npm install
- npm run dev
-
Frontend
- cd Frontend
- npm install
- npm start
Notes
- Backend default MONGO_URI is
mongodb://localhost:27017/caseflow. Ensure MongoDB is running locally or update.envto point to your Mongo instance. - Frontend uses Angular CLI (npm start -> ng serve).
- I've added a small TypeScript check script
Frontend/tsc_check.jsyou can run withnode tsc_check.jswhile in the Frontend folder.