https://github.com/leoherrmann/snek
Another variant of the classic arcade game featuring an online leaderboard as well as offline functionality
https://github.com/leoherrmann/snek
flask javascript leaderboard pwa snake-game
Last synced: 4 months ago
JSON representation
Another variant of the classic arcade game featuring an online leaderboard as well as offline functionality
- Host: GitHub
- URL: https://github.com/leoherrmann/snek
- Owner: LeoHerrmann
- Created: 2019-11-16T16:56:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-13T20:13:29.000Z (almost 5 years ago)
- Last Synced: 2025-01-05T20:42:18.982Z (5 months ago)
- Topics: flask, javascript, leaderboard, pwa, snake-game
- Language: JavaScript
- Homepage: https://rahm.pythonanywhere.com/snek/
- Size: 4.14 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.txt
Awesome Lists containing this project
README
# Snek
Another variant of the classic arcade game featuring an online leaderboard as well as offline functionalityClick [here](https://rahm.pythonanywhere.com/snek/) to try it out.
## Screenshots
![]()
![]()
## 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.