hellotuna / Django-channels-Tic-Tac-Toe

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django guide for implementing real time application

This is the example project for implementing Tic Tac Toe game.

Demo GIF

Guide link:

Installation guide

  • Clone repository

    git clone https://github.com/krazygaurav/Django-channels-Tic-Tac-Toe

  • cd to repository.

  • Create a virtualenv by following command

    • For Linux/Mac

      virtualenv -p python3 .

    • For Windows

      virtualenv .

  • Activate virtualenv

    • For Linux/Mac

      source bin/activate

    • For Windows

      .\Scripts\activate

  • Install required packages

    • For Linux/Mac

      pip3 install -r requirements.txt

    • For Windows

      pip install -r requirements.txt

  • cd to src and run the server

    • For Linux/Mac

      python3 manage.py runserver

    • For Windows

      python manage.py runserver

About


Languages

Language:Python 43.4%Language:JavaScript 16.7%Language:Shell 11.4%Language:HTML 7.9%Language:PowerShell 6.5%Language:Batchfile 5.6%Language:Xonsh 4.3%Language:CSS 4.3%