Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.09 KB

README.md

File metadata and controls

49 lines (34 loc) · 1.09 KB

FinControl BE

Description

Back-end written with Rust for FinControl App

Tech Stack:

Installation

Pre-requirements

Running the app in DEV mode

Create .env file in the root of the project with the content from .env.example file.

Run this commands to prepare the project:

```bash
# generate Prisma Client
cargo run prisma generate
# run Docker infrastructure
docker compose up

Run this if you use local DB instance from docker-compose:

cargo run prisma migrate deploy

Then run

cargo run