Skip to content

AlanSyue/saboteur_backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Saboteur

Demo

https://game.dev.newideas.com.tw/

Description

This is an online board game that can play with your friends!

This repository implements APIs and the websocket service.

You can see the frontend repository here.

You can see the game's rule here. image

Tools

Getting Started

  1. Create and turn on the development environment
  docker-compose up -d
  1. Test the API http://localhost:8000/

Some useful commands

  • Enter the node environemnt. (If you want to install any node module, please enter first.)
  docker-compose run node /bin/bash
  • Show web service logs
  docker-compose logs -f app
  • Turn off the environment
  docker-compose down
  • Run the tests
  docker-compose run node npm run test