Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/thatsjustcheesy/c43-project


https://github.com/thatsjustcheesy/c43-project

Last synced: about 1 month ago
JSON representation

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
```