Go to file
NlightN22 7304fe231e refactoring
add translates
finish recordings
2024-02-25 21:15:31 +07:00
nginx init 2024-02-17 22:57:32 +07:00
public init 2024-02-17 22:57:32 +07:00
src refactoring 2024-02-25 21:15:31 +07:00
.gitignore add setting 2024-02-19 02:42:25 +07:00
package.json add recordings 2024-02-24 02:47:24 +07:00
README.md init 2024-02-17 22:57:32 +07:00
tsconfig.json init 2024-02-17 22:57:32 +07:00
yarn.lock add recordings 2024-02-24 02:47:24 +07:00

Instruction

  • download
  • go to download directory
  • run yarn to install packages
  • create file: docker-compose.yml
version: '3.0'

services:
  front:
    image: nginx:alpine
    volumes:
      - ./build/:/usr/share/nginx/html/
      - ./nginx/:/etc/nginx/conf.d/
    ports:
      - 8080:80 # set your port here
  • create file: .env.production.local
REACT_APP_HOST=localhost
REACT_APP_PORT=4000
REACT_APP_OPENID_SERVER=https://server:port/realms/your-realm
REACT_APP_CLIENT_ID=your-client
  • run:
yarn build
docker compose up -d