Skip to content

Latest commit

 

History

History
61 lines (39 loc) · 1.16 KB

README.md

File metadata and controls

61 lines (39 loc) · 1.16 KB

🚧 UNDER DEVELOPMENT 🚧 Aibyss: code your AI to compete in a survival game

Aibyss social image

Setup

  • install node.js
  • (on macOS only) install node-gyp: npm install -g node-gyp
  • install the dependencies: npm ci

Development server

Start the development server on http://localhost:3000:

npm run dev

Create new user

npm run create-user <username>

Running the tests

unit tests

npm run test

e2e tests

First, setup e2e tests by running npm run test:e2e:install, then run the tests with:

npm run test:e2e

Contributors guide

We follow conventional commits, name your PRs accordingly

Production

Build the application for production:

npm run build

Locally preview production build:

npm run preview

Check out the deployment documentation for more information.