Web application "Brigadier agency" built for my EBC-VWA - Web Applications Development course.
- Implemented backend using the Flask framework in the Python programming language
- Connected database to store and query data using SQLite
- Designed dynamic web based on different roles and provided authentication process with proper security
Create virtual environment:
$ python -m venv venv
Activate your virtual environment:
$ source venv/bin/activate
Install required librabries from requirements.txt:
$ pip install -r requirements.txt
Enjoy:
$ flask run
/
ββ database/ # Database configuration and creating tables
ββ helpers/ # User class and func for generation hash for password
ββ static/ # Static resources
β ββ images/
β
ββ template/ # HTML templates
β ββ auth/
β β ββ macros/
β ββ companies/
β ββ contact/
β ββ home/
β ββ positions/
β ββ shifts/
β
ββ views/ # View functions
ββ README.md # This file
ββ app.py # Runner
ββ config.py # Configuration
ββ requirements.txt # Required librabries

