An open API service indexing awesome lists of open source software.

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.

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:


  1. Python 2.7

  2. Django 1.10.2

Running the game:


  1. Clone the repository to your local computer using git clone or just download the repository
  2. 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"."
  3. Activate the virtualenv: source somename/bin/activate
  4. Install the requirements: pip install -r requirements
  5. Save the database: python manage.py migrate
  6. Start the game server using: python manage.py runserver