Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hfaran/ubcrecsessions

[CPSC 304 Project] An application that allows UBC REC players to sign-up for drop-in sessions in advance
https://github.com/hfaran/ubcrecsessions

Last synced: about 1 month ago
JSON representation

[CPSC 304 Project] An application that allows UBC REC players to sign-up for drop-in sessions in advance

Awesome Lists containing this project

README

        

# UBC REC Sessions

An application that allows UBC REC players to sign-up for drop-in sessions in
advance to gauge interest!

## Setup

### Bootstrapping Database

```bash
sqlite3 project.db < bootstrapdb.sql
```

### Installing Dependencies

```bash
sudo pip install -r requirements.txt
# For documentation
sudo pip install mkdocs
```

## Running the Application

```bash
cd src/
./ubcrec_server.py --port 8888 --db ../project.db --cookie-secret cookies
```

## Web API Documentation

Using `mkdocs`:

```bash
mkdocs serve
```

Or you can just view `docs/API_documentation.md`.