lognado
v1.0.1
Published
Local log explorer
Downloads
4
Readme
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
Clone the repository
Install all dependencies
npm run execute "npm install"
- Build the shared package
cd shared && npm run build
- Start the backend
cd backend && npm run dev
- Start the frontend
cd frontend && npm run dev
Release instructions
- Update the package version (used for NPM and as Docker image tag)
npm version patch # | or major, minor, etc...
- Publish the NPM package
npm publish
- Build the Docker image
npm run docker:build
- Push the Docker image
npm run docker:build