1.0.1 • Published 3 years ago

lognado v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Lognado

Setup

Docker

docker run -d -p 8035:8035 lognado/lognado

Docker Compose

docker-compose.yml

version: "3"
services:
  mailhog:
    image: "lognado/lognado"
    container_name: "lognado"
    ports:
      - 8035:8035

Development setup

  1. Clone the repository

  2. Install all dependencies

npm run execute "npm install"
  1. Build the shared package
cd shared && npm run build
  1. Start the backend
cd backend && npm run dev
  1. Start the frontend
cd frontend && npm run dev

Release instructions

  1. Update the package version (used for NPM and as Docker image tag)
npm version patch # | or major, minor, etc...
  1. Publish the NPM package
npm publish
  1. Build the Docker image
npm run docker:build
  1. Push the Docker image
npm run docker:build