Skip to content

Matterwise/core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Local Development

First time runner:

  1. Copy the environment file.

    cp env-example-relational .env
  2. Run migrations.

    npm run migration:run
  3. Install dependencies.

    npm install

Running for development:

  1. Start required services using Docker.

    docker compose up -d mysql adminer maildev
  2. Run the application in development mode.

    npm run start:dev
  3. Open your browser and go to: http://localhost:3000


Quick run using Docker

If it's your first time:

  1. Copy the environment file.

    cp env-example-relational .env
  2. Start the application using Docker.

    docker compose up -d
  3. Open your browser and go to: http://localhost:3000


Stopping containers

To stop containers:

docker compose down