vikpe / draft

Single page app for drafting.

Home Page:http://draft.quake.world

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

draft Deploy

Single page web app for drafting

Install/getting started

  1. Clone repo
  2. yarn install
  3. yarn dev - will serve app @ http://localhost:5173

Editing players and teams

Edit src/data.js

Example

export const teams = {
  red: {
    id: "red",
    playerNames: ["bps"],
    sortOrder: 1,
  },
  blue: {
    id: "blue",
    playerNames: ["Milton"],
    sortOrder: 2,
  },
};

export const players = {
  "AiRman": Player("AiRman", "pl"),
  "Andeh": Player("Andeh", "se"),
  "anni": Player("anni", "de"),
  "badsebi": Player("badsebi", "pl"),
};

Development

Start development server at http://localhost:5173, live-reloading changes.

yarn dev

Production

Bundle and output build to dist/.

yarn build

About

Single page app for drafting.

http://draft.quake.world

License:MIT License


Languages

Language:JavaScript 82.5%Language:SCSS 14.7%Language:HTML 2.7%