Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 525 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 525 Bytes

urlsh-api-modelec

To install dependencies:

bun install

fill example.env and rename it to .env

If you want to use database with prisma

bun prisma:migrate:dev
bun dev:db

else

bun dev

Or you can use docker-compose to run the project

version: '3.8'

services:
    urlsh-api-modelec:
        image: breizhhardware/modelec-urlsh-qrcode:latest
        container_name: urlsh-api-modelec
        ports:
            - "8080:8080"
docker-compose up -d