Web application to play the game of Tic-Tac-Toe
- User login
- Database
- Making Moves
- Sending invitations
- Install Python3 on your local machine by following this link
- Set up a virtual environment in your project folder via your
terminal. This will help you isolate dependencies for each project to avoid conflicting dependencies in different projects - Run
python3 -m venv django-env - In order to activate the virtual environment, run
. django-env/bin/activatefor linux and macOS. For windows, rundjango-env\Scripts\activate.bat
- Ensure you are working in your virtual environment
django-env - Run
pip install django - To specify a version of django, run
pip install django==1.11
- Create a new django project by running
django-admin startproject tictactoe - Navigate to the newly created folder
tictactoeby runningcd tictactoe - Run the project by typing
python manage.py runserver - Also run the project in a code editor such as
pycharm,vscodeoratom