Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.21 KB

README.md

File metadata and controls

44 lines (33 loc) · 1.21 KB

Snek

Another variant of the classic arcade game featuring an online leaderboard as well as offline functionality

Click here to try it out.

Screenshots

Start Screen Game Screen Leaderboard Screen

Getting Started

Requirements:

  • Python 3
  • pip
  • virtualenv

Installation

To get this project running on your local machine, the following steps need to be performed:

Clone this repository and navigate into the project:

git clone https://github.com/Rahmsauce/Snek.git
cd Snek

Create a virtual environment and activate it:

python3 -m venv env
source env/bin/activate

Install Flask:

pip install flask

Export and run application.py:

export FLASK_APP=application.py
export FLASK_ENV=development
flask run

Open http://localhost:5000 using a web browser.