Another variant of the classic arcade game featuring an online leaderboard as well as offline functionality
Click here to try it out.
- Python 3
- pip
- virtualenv
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.