Skip to content

Releases: Zpidero/ProjecteWeb

v1.0.0

19 Apr 19:26
0a03527

Choose a tag to compare

FutDraft v1.0.0

The first stable release of FutDraft, a fan-made web application inspired by the FIFA FUT Draft mechanic, themed around the Inazuma Eleven universe.

What's included

  • Draft game — Pick your squad through randomised player choices filtered by position and power tier, choose a formation, name your draft, and save it to your profile.
  • Player browser — Paginated, searchable, and filterable list of all synced players with detail pages per player.
  • Team browser — Paginated, searchable list of all teams with squad detail pages.
  • User accounts — Registration, login, and profile pages with saved draft history.
  • Data sync — Management commands (sync_players, sync_teams) to pull data from the public Inazuma Eleven REST API into the local database.
  • Docker support — Full Dockerfile + docker-compose.yml setup; data sync runs automatically on container start.

Tech stack

Django 6.0.3 · Python 3.14 · Uvicorn · SQLite · Tailwind CSS · Docker · uv

Getting started

cp .env.example .env   # set your SECRET_KEY
uv sync
uv run manage.py migrate
uv run manage.py sync_players
uv run manage.py sync_teams
uv run manage.py runserver

Or with Docker:

cp .env.example .env
docker compose up --build

The app will be available at http://localhost:8000.