https://github.com/angelobattaglia/ticketing_system
An implementation of an online ticketing management service written in Flask/Jinja paired with SQLite
https://github.com/angelobattaglia/ticketing_system
bootstrap flask sqlite sqlite3
Last synced: about 2 months ago
JSON representation
An implementation of an online ticketing management service written in Flask/Jinja paired with SQLite
- Host: GitHub
- URL: https://github.com/angelobattaglia/ticketing_system
- Owner: angelobattaglia
- Created: 2024-06-23T00:50:56.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-27T20:52:14.000Z (about 2 years ago)
- Last Synced: 2025-06-12T13:04:40.080Z (about 1 year ago)
- Topics: bootstrap, flask, sqlite, sqlite3
- Language: Python
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ticketing Management Software
## How to fire this up
On Windows, it's recommended to use Powershell. In the root directory of this project:
```ps1
python -m venv .env
cd .env\scripts
.\Activate.ps1
```
On linux, through bash or zsh
```shell
python3 -m venv .env
cd .env/bin
source activate
```
Then install all of the libraries required
```ps1
pip install -r requirements.txt
pip list # to list the libraries required
```
This will run the Flask development server with debug mode enabled, allowing you to see detailed error messages and take advantage of features like automatic code reloading when changes are made
```ps1
cd app
flask run --debug
```
If you add any new module to this web app via virtual environment of this project,
just update the requirements.txt
```ps1
pip freeze > requirements.txt
```
As for the db viewer, it's recommended to use the [sqlitebrowser](https://sqlitebrowser.org/)