Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ziadelsayed0/job-application-submission-system
A professional job application management system featuring submission forms, an admin panel, and application tracking.
https://github.com/ziadelsayed0/job-application-submission-system
bootstrap flask gunicorn material-icons sqlite3
Last synced: about 2 months ago
JSON representation
A professional job application management system featuring submission forms, an admin panel, and application tracking.
- Host: GitHub
- URL: https://github.com/ziadelsayed0/job-application-submission-system
- Owner: ziadelsayed0
- Created: 2024-07-09T09:26:18.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-10-20T10:56:15.000Z (3 months ago)
- Last Synced: 2024-10-21T01:10:21.712Z (3 months ago)
- Topics: bootstrap, flask, gunicorn, material-icons, sqlite3
- Language: HTML
- Homepage:
- Size: 9.17 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Job Application Submission System
it is a forms for our friend mustafa .
## Technologies
- Sqlite
- Flask
- Bootstrap
- JQuery
- Railway
## Admin form
## form example
## Dashboard form
## Getting Started
to build the application run this command
```bash
pip install -r requirements.txt
```
to run your application you hava 2 options ,
1- running it directly
```bash
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
```bash
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
## Todo
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.