Skip to content

Latest commit

 

History

History
44 lines (24 loc) · 1.06 KB

README.md

File metadata and controls

44 lines (24 loc) · 1.06 KB

🎮 FIFA Tournament Generator

Example Screenshots

demo demo

Getting started

We're using django.users as game players.

1. Firstly, you need teams, you can create teams with owners. (users)

2. You need to add clubs like "Manchester, Real Madrid etc."

3. You need to create a season, then you should go http://localhost:8000/initial/seasons/ to make a fixture!

after building the fixture you will have scoreboard and fixture pages. then, PLAY GAMES!!! 🎮👾

Installation

this project depends on Python3

Create Virtual Environment

$ virtualenv --python=$(which python3) env
$ source env/bin/activate

Clone the repository

$ git clone https://github.com/keremciu/fifa-tournament-generator.git

install requirements

$ pip install -r requirements.txt

To run the project, Follow the following commands:

$ python manage.py createsuperuser
$ python manage.py runserver 0:8000