Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.