Bantr / Koyi

Processes data for Bantr
0 stars 0 forks source link

GitHub Workflow Status Docker container Discord
Bantr

This app processes data for Bantr. Fetching, labeling and parsing demo files, getting API responses from Steam & Faceit, ...

Installation

# Clone the repo
git clone https://github.com/Bantr/Koyi.git

# Install dependencies
npm i

# Make sure you have Redis and Postgres running
# Create a .env file for your config
cp .env.example .env

# Fill in config
nano .env

# Run it
npm run start:dev

Releasing a new version

Use the npm version command on the master branch.

# MAJOR version when you make incompatible API changes,
npm version major

# MINOR version when you add functionality in a backwards compatible manner, and
npm version minor

# PATCH version when you make backwards compatible bug fixes.
npm version patch