Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thatsjustcheesy/c43-project
https://github.com/thatsjustcheesy/c43-project
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/thatsjustcheesy/c43-project
- Owner: ThatsJustCheesy
- Created: 2023-07-18T19:17:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-07T21:13:06.000Z (over 1 year ago)
- Last Synced: 2023-08-07T22:21:25.379Z (over 1 year ago)
- Language: Python
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MyBnB
CSCC43 final project.
## Install dependencies
```
poetry install
poetry run python install_nltk.py
```## Populate database
```
$ mysql
mysql> source sql/drop.sql
mysql> source sql/create.sql
mysql> source sql/populate.sql
```## Start server
Choose one:
### Plain development server
```
poetry run python -m mybnb.app
```### Auto-reloading debugger
```
poetry run flask --app mybnb/app.py --debug run
```