Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"name": "@bailo/backend",
"description": "",
"private": true,
"description": "Backend API for Bailo",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
Expand All @@ -14,9 +16,6 @@
"certs": "mkdir -p certs && openssl genrsa -out certs/key.pem 2048 && openssl req -new -x509 -key certs/key.pem -out certs/cert.pem -config certs/san.cnf -extensions 'v3_req' -days 360 && tsx src/scripts/generateJWKS.ts",
"seed": "tsx src/seeds/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@agendajs/mongo-backend": "^4.0.0",
"@asteasolutions/zod-to-openapi": "^7.3.4",
Expand Down
6 changes: 6 additions & 0 deletions compose.override.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@ services:
- 9229:9229
volumes:
- ./backend/src:/app/src
- backend_node_modules:/app/node_modules
build:
target: dev

frontend:
volumes:
- ./frontend:/app
- frontend_node_modules:/app/node_modules
build:
target: dev

Expand All @@ -45,6 +47,10 @@ services:
MINIO_SERVER_URL: http://minio:9000
MINIO_SKIP_CLIENT: yes

volumes:
frontend_node_modules:
backend_node_modules:

networks:
debug:
name: ${INSTANCE_NAME}_debug
16 changes: 9 additions & 7 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"name": "@bailo/frontend",
"private": true,
"description": "Frontend UI for Bailo",
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"cy:open": "cypress open",
"cy:run": "cypress run --spec \"cypress/e2e/bailo/**/*\"",
"start": "next start",
"lint": "eslint --max-warnings 0 actions cypress pages src types utils",
"start": "npx next start",
"dev": "npx next dev",
"build": "npx next build",
"test": "vitest",
"lint": "npx eslint --max-warnings 0 actions cypress pages src types utils",
"style": "prettier --write .",
"check-style": "prettier --check .",
"test": "vitest"
"cy:open": "npx cypress open",
"cy:run": "npx cypress run --spec \"cypress/e2e/bailo/**/*\""
},
"dependencies": {
"@emotion/cache": "^11.11.0",
Expand Down
Loading
Loading