Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 732 Bytes

README.md

File metadata and controls

50 lines (38 loc) · 732 Bytes

harmony-core

Details

This is the core module used by Harmony.

Prerequisites

Usage

# docker-compose.yaml
---

services:
  proxy:
    image: ghcr.io/applicreation/harmony-proxy:v0
    ports:
      - 80:80
  core:
    image: ghcr.io/applicreation/harmony-core:v0
    env_file:
      - ./.harmony/core/.env
    volumes:
      - ./.harmony/core:/root/.harmony:ro
  # module config
# ./.harmony/core/config.yaml
---

name: Core
modules: [ ]

Development

git secret init
git secret reveal
docker compose run --rm core npm install
docker compose up