Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 600 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 600 Bytes

@ovhcloud/bpmn-tool-backend

Backend for the @ovhcloud/bpmn-tool UI.

Installation

# Install
$ yarn install

# Copy the .env file
$ cp .env.example .env

Then, you also need to start a Postgres database and init the schema:

# Run the database:
$ docker run --rm -it --name bpmn-tool-database -e POSTGRES_PASSWORD=postgres -p 5432:5432 postgres

# Apply the migration:
$ docker exec -i bpmn-tool-database psql -U postgres -d postgres < ./migrations/init.sql

Usage

yarn start

The backend will start on port 3000.