Skip to content

Commit

Permalink
Remove DATABASE_SECRETS which is used for AWS, and add a default da…
Browse files Browse the repository at this point in the history
…tabase url for docker.
  • Loading branch information
MelissaAutumn committed Jan 8, 2024
1 parent bea49d2 commit dce3df2
Show file tree
Hide file tree
Showing 3 changed files with 1,604 additions and 635 deletions.
3 changes: 1 addition & 2 deletions backend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ FRONTEND_URL=http://localhost:8080
SHORT_BASE_URL=

# -- DATABASE --
DATABASE_URL=
DATABASE_SECRETS=
DATABASE_URL="mysql+mysqldb://tba:tba@mysql:3306/appointment"
# Secret phrase for database encryption (e.g. create it by running `openssl rand -hex 32`)
DB_SECRET=

Expand Down
11 changes: 8 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --ignore-path .gitignore",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"test": "vitest"
},
"dependencies": {
"@auth0/auth0-vue": "^2.0.2",
Expand All @@ -17,7 +18,7 @@
"@tailwindcss/forms": "^0.5.3",
"@vitejs/plugin-vue": "^4.5.2",
"@vueuse/components": "^10.4.1",
"@vueuse/core": "^10.4.1",
"@vueuse/core": "^10.7.0",
"core-js": "^3.8.3",
"dayjs": "^1.11.5",
"pinia": "^2.1.6",
Expand All @@ -37,7 +38,11 @@
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-vue": "^9.19.2",
"jsdom": "^23.0.1",
"msw": "^2.0.11",
"node-fetch": "^3.3.2",
"postcss": "^8.4.17",
"vite-plugin-eslint": "^1.8.1"
"vite-plugin-eslint": "^1.8.1",
"vitest": "^1.1.0"
}
}
Loading

0 comments on commit dce3df2

Please sign in to comment.