- Node.js version - >=14
- Neo4jDriver version - 4.2 https://neo4j.com/
- docker
- run
npm install
- run
npm run docker:up
to run neo4j docker container - connect to your neo4j server and create a new database with custom name
- run
npm run neo4j:migrate:run
to run neo4j migrations - run
npm run build
andnpm start
to run project - run
npm run dev
to run dev mode
npm run test
run testsnpm run test:coverage
check test coverage
npm run neo4j:migrate:run
run all migrationsIndex=[number] npm run neo4j:migrate:rollback
rollback migrationIndex=zero npm run neo4j:migrate:rollback
rollback all migrations
Variable | Default value | Comment |
---|---|---|
PORT | 3000 | node application port |
HOST | localhost | |
NEO4J_PORT | 7687 | neo4j connection port |
NEO4J_PASSWORD | neo4j | |
NEO4J_USER | neo4j | |
NEO4J_HOST | localhost | |
NEO4J_DBNAME | myapp |