mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-25 06:41:21 +00:00
19 lines
368 B
Makefile
19 lines
368 B
Makefile
|
|
# Group targets
|
|
all: deps
|
|
|
|
# Install dependencies
|
|
deps:
|
|
@echo "Installing dependencies..."
|
|
@npm install
|
|
|
|
# Start the application
|
|
start:
|
|
@echo "Starting application..."
|
|
@NODE_ENV=production node .
|
|
|
|
# Start the application in development mode
|
|
start-dev:
|
|
@echo "Starting application (development mode)..."
|
|
@NODE_ENV=development ./node_modules/.bin/supervisor -q .
|