Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 776 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 776 Bytes

dashi

Screenshot of an example configuration

Please Note

This project is still in development, so there will be bugs and sweeping changes.

Getting Started

  • Clone this repository: git clone https://github.com/jamjnsn/dashi.git
  • Start the server: npm run serve
  • Head to http://localhost:8000

Docker

Compose

docker-compose.yml example:

services:
  dashi:
    image: jamjnsn/dashi:latest
    environment:
      NODE_ENV: production
    ports:
      - 8000:8000
    volumes:
      - config:/usr/src/app/config
volumes:
  config: