it is a forms for our friend mustafa .
- Sqlite
- Flask
- Bootstrap
- JQuery
- Railway
to build the application run this command
pip install -r requirements.txt
to run your application you hava 2 options ,
1- running it directly
python3 app.py # for linux use this command
python.exe app.py # for windows run this command
but this command will not create an http service which make ur app not descoverd when deploying it.
2- running using gunicorn
sudo gunicorn -w 4 app:app # for linux usage
gunicorn -w 4 app:app # for windows usage
using gunicorn will make your app as a service that will be discovered later by any proxy server like Apache or Nginx
1- get all forms on admin page.
2- get all forms data on specific form.
3- add the required to accept policies on the form before user submit.