Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hfaran/ubcrecsessions
- Owner: hfaran
- Created: 2015-03-18T23:51:42.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-30T10:31:52.000Z (almost 10 years ago)
- Last Synced: 2024-10-25T02:44:14.158Z (3 months ago)
- Language: Python
- Homepage:
- Size: 834 KB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.