Skip to content

GitHub-themed side-scrolling trampoline game for web

Notifications You must be signed in to change notification settings

bitoffdev/octotramp

Folders and files

NameName
Last commit message
Last commit date
Dec 2, 2020
Nov 26, 2020
Feb 27, 2022
Aug 28, 2021
Nov 26, 2020
Nov 26, 2020
Nov 9, 2018
Apr 1, 2017
Feb 27, 2022
Nov 29, 2016

Repository files navigation

OctoTramp

OctoTramp is a fun GitHub-themed OctoTramp trampolining game originally created for HackRPI 2016.

The stack utilizes Django and Python 3 for the backend and Processing.js on the frontend.

Setup

Install python3 and pip3 before continuing. While not required, it is recommended that you use pipenv to create a virtual Python environment.

Next, install the required Python modules:

# OPTION 1: without pipenv
python3 -m pip install -r requirements.txt

# OPTION 2: with pipenv
python3 -m pipenv install -r requirements.txt
python3 -m pipenv shell

Setup the database:

python3 manage.py makemigrations octotramp
python3 manage.py migrate

Running locally

python3 manage.py runserver