Skip to main content

🚀 Getting Started

Try out the live demo​

You can try out the Lunalytics live demo here. You will be signed in as a guest user who has the ability to look through all sections of the application.

Docker​

docker run -d \
-p 2308:2308 \
-v /path/to/data:/app/data \
-v /path/to/logs:/app/logs \
ksjaay/lunalytics:latest

Requirements​

Make sure you have the following applications installed before starting:

Clone application​

git clone https://github.com/KSJaay/Lunalytics.git
cd Lunalytics

Setup application​

# Setup application
npm run setup

# Start application using scripts
npm run start

# Alternatively start application using
node server/index.js

Lunalytics will be accessible on http://localhost:2308

Using pm2 to run application in the background​

# Install pm2 globally
npm install pm2 -g

# Start the server
pm2 start server/index.js --name Lunalytics

# Or start the server using script
pm2 start npm --name "Lunalytics" -- run start

# Optional
pm2 save
pm2 startup

## Monitoring console output
pm2 monit