mirror of
https://github.com/modelec/urlsh-qrcode.git
synced 2026-05-09 05:15:26 +02:00
No description
- TypeScript 95.2%
- Dockerfile 4.8%
| .gitignore | ||
| bun.lockb | ||
| Dockerfile | ||
| example.env | ||
| index.ts | ||
| noDb.ts | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
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