Skip to content

OlehSh/koaPractice

Repository files navigation

koaPractice

Environment

Run project

  • 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 and npm start to run project
  • run npm run dev to run dev mode

Test

  • npm run test run tests
  • npm run test:coverage check test coverage

Migration commands

  • npm run neo4j:migrate:run run all migrations
  • Index=[number] npm run neo4j:migrate:rollback rollback migration
  • Index=zero npm run neo4j:migrate:rollback rollback all migrations

Env file variables

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