https://github.com/codophobia/tic-tac-toe-game
A two player tic-tac-toe game made using django. It uses minimax algorithm.
https://github.com/codophobia/tic-tac-toe-game
Last synced: 3 months ago
JSON representation
A two player tic-tac-toe game made using django. It uses minimax algorithm.
- Host: GitHub
- URL: https://github.com/codophobia/tic-tac-toe-game
- Owner: codophobia
- Created: 2016-10-09T18:53:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-25T12:05:52.000Z (about 9 years ago)
- Last Synced: 2025-01-20T00:16:43.378Z (12 months ago)
- Language: Python
- Homepage: https://tic-tac-toe-game-django.herokuapp.com/
- Size: 78.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tic-Tac-Toe-Game
A two player tic-tac-toe game made using django. It uses minimax algorithm.
You can see the webapp here:tic-tac-toe-game
Requirements:
- Python 2.7
- Django 1.10.2
Running the game:
- Clone the repository to your local computer using git clone or just download the repository
- Navigate to the downloaded folder and create a virtualenv inside it: virtualenv somename. If you don't have virtualenv installed, install it using "sudo pip install virtualenv"."
- Activate the virtualenv: source somename/bin/activate
- Install the requirements: pip install -r requirements
- Save the database: python manage.py migrate
- Start the game server using: python manage.py runserver