- Installation for backend instructions
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- Frontend Installation
cd templates && npm install
npm start
Visit http://localhost:4200 to use the application.
Prod Mode:
Build frontend:
cd templates && npm install
ng build --prod
Start prod server:
flask run
Visit http://localhost:5000/ to use the application.
Webapp has 3 pages: / : User can submit tip. /admin : Admin can login to admin dashboard from here. Admin credentials: email: admin@admin.org password: admin /admin-dashboard: Admin view submitted tips.