Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1016 Bytes

README.md

File metadata and controls

34 lines (24 loc) · 1016 Bytes

RealGamer club

To edit js files

  1. Install Yarn
  2. Install Flow globally: yarn global add flow-bin
  3. Configure your editor to support Flow.
  4. Inside each sub-package, run yarn to install dependencies

Getting started

⚠️ This is deprecated, we will use elastic instead of mysql. Do not use Docker for now.

First you need to get the node container up & running. Then you get into it and install dependencies of the app.

docker-compose up -d node_builder
docker exec -it node_builder /bin/bash

Once you get into the container, you could start using node/npm. All sources are mapped in /source. For example, to install all dependencies of the api app:

cd source/api
yarn install

To start the api server, you just need to start the api container. That will start the api and mysql containers so you could start working on it. The api is available at http://localhost:8080/

docker-compose up -d api