LumaNet is a toor for visualizing graphs in simple to understand way for developers. Currently support read from JSON and Neo4j.
This project includes a Makefile with convenient commands for development and deployment:
make start-lineage-visualizer
- Installs dependencies with
pnpm install
- Starts the development server in the background
- Waits until the service is fully available on
http://localhost:3000
- Shows status messages throughout the startup process
make stop-lineage-visualizer
- Stops the running lineage visualizer process
- Kills any
pnpm run dev
processes
make clean-all-stack
- Kills processes running on port 3000
- Removes temporary files (
.log
,temp_*.json
,generated-*.json
) - Cleans up build artifacts (
node_modules
,.pnpm-store
,.next
) - Useful for a complete reset of the development environment
The supported node limit can be changed by editing the NEXT_PUBLIC_NODE_LIMIT
value in the .env
file at the project root.
See LICENSE
for more information.