Frontend is developed with Angular technology. Follow the below steps to run the frontend application.
- Go to
frontendfolder - Execute
npm installfor compile - Execute
npm startfor start the application
Backend is developed with Django Rest Framework and database used MS SQL Server. Follow the below steps to run the backend application.
- Go to
db_dumpfolder to get the sql server dump and import the dump using sql server management studio - Go to
backendfolder - Enter
pip install -r requirements.txtin command line for install required packages - Change database configuration in backend/src/settings.py file.
- Run the application using
python manage.py runserver.