项目作者: PhoenikSoft

项目描述 :
Application for organizing sport events and balancing teams
高级语言: Java
项目地址: git://github.com/PhoenikSoft/team-balance-app.git
创建时间: 2020-02-23T17:44:09Z
项目社区:https://github.com/PhoenikSoft/team-balance-app

开源协议:

下载


Team Balance Application

Environments

How to boot up the whole project (development version)

In that mode code live-refresh is enabled for frontend.

  1. Install Docker: https://docs.docker.com/get-docker/
  2. Run command inside the root of the project to boot the project:
    1. docker-compose up - will use an old image (won’t rebuild projects)
    2. docker-compose up --build - rebuilds an image, so all new changes will be applied

How to boot up the whole project (production version)

  1. Install Docker: https://docs.docker.com/get-docker/
  2. Run command inside the root of the project to boot the project:
    1. docker-compose -f docker-compose-prod.yml up - will use an old image (won’t rebuild projects)
    2. docker-compose -f docker-compose-prod.yml up --build - rebuilds an image, so all new changes will be applied

How to boot up backend

  1. Install Docker: https://docs.docker.com/get-docker/
  2. Run command inside the root of the project to boot the project:
    1. docker-compose -f docker-compose-be.yml up - will use an old image (won’t rebuild projects)
    2. docker-compose -f docker-compose-be.yml up --build - rebuilds an image, so all new changes will be applied