Compare commits

...

2 Commits

Author SHA1 Message Date
Sugui 0472cf24f1 Added TODO.md to track needed changes 2024-03-30 12:08:48 +01:00
Sugui 0ff505de37 Fix scripts 2024-03-30 12:08:35 +01:00
2 changed files with 5 additions and 2 deletions

3
TODO.md Normal file
View File

@ -0,0 +1,3 @@
- Parametrize bot API url in env variable
- Encode images in base64
- Parametrize tags

View File

@ -17,8 +17,8 @@
"express-list-endpoints": "^6.0.0"
},
"scripts": {
"start": "bun run index.ts",
"docker-dev": "bun --hot run index.ts",
"start": "bun run src/index.ts",
"docker-dev": "bun --hot run src/index.ts",
"dev": "docker compose down -v && docker compose up",
"test": "docker compose down -v && docker compose run fe-middleware bun test"
}