Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phidlarkson/simple-booking-system
THIS IS A SIMPLE FLASK APPLICATION THAT YOU CAN IMPROVE FOR BUS RIDE BOOKING
https://github.com/phidlarkson/simple-booking-system
Last synced: 7 days ago
JSON representation
THIS IS A SIMPLE FLASK APPLICATION THAT YOU CAN IMPROVE FOR BUS RIDE BOOKING
- Host: GitHub
- URL: https://github.com/phidlarkson/simple-booking-system
- Owner: PhidLarkson
- Created: 2024-07-24T09:48:35.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-24T10:20:10.000Z (6 months ago)
- Last Synced: 2024-11-08T16:23:17.606Z (2 months ago)
- Language: HTML
- Homepage:
- Size: 78.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# THIS IS A SIMPLE FLASK APPLICATION THAT YOU CAN IMPROVE FOR BUS RIDE BOOKING
You can create a virtual environment and then install dependencies by running:
``` pip install -r requirements.txt ```
After wards yousetup the database, you can also make adjustments to the models.py and forms.py in the /app directory.
To initialise the database:
``` flask db init ```
To make your migrations and commit:
``` flask db migrate -m "Initial migration" ```
To finalise:
``` flask db upgrade ```
You start the application using:
``` flask run ```