https://github.com/yurykozhenov/university-database
Database GUI made with Python and Flask
https://github.com/yurykozhenov/university-database
flask python university
Last synced: 2 months ago
JSON representation
Database GUI made with Python and Flask
- Host: GitHub
- URL: https://github.com/yurykozhenov/university-database
- Owner: yurykozhenov
- Created: 2016-06-01T14:08:09.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-25T23:30:36.000Z (about 10 years ago)
- Last Synced: 2025-12-31T11:28:20.425Z (6 months ago)
- Topics: flask, python, university
- Language: Python
- Homepage: https://university-database.herokuapp.com/
- Size: 223 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# University Database Project
In order to run this app you need to have [Python 3](https://www.python.org/) installed.
Also, you need:
* [Flask](https://github.com/pallets/flask)
* [Peewee ORM](https://github.com/coleifer/peewee)
* [Faker](https://github.com/joke2k/faker)
* [WTForms](https://github.com/wtforms/wtforms)
* [Flask-WTF](https://github.com/lepture/flask-wtf)
**Run this command inside project directory to install dependencies:**
```
pip install -r requirements.txt
```
**Start server:**
```
python app.py
```
## If you want to create isolated environment for application:
Install and create virtualenv:
```
pip install virtualenv
virtualenv venv
```
Then, if you are on Windows, run this:
```
venv\Scripts\activate.bat
```
Or if you are on Mac or Linux:
```
source venv/bin/activate
```
And then run:
```
pip install -r requirements.txt
```
**If you want to exit isolated enviroment:**
```
deactivate
```