Skip to content

Commit

Permalink
edgecreator: Add missing envvar, add missing internal dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bperel committed Jan 24, 2025
1 parent 981d3b8 commit 5bdfd8c
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/edgecreator/api/.env
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ TOKEN_SECRET=3543c30fe79047b4f73cfb61aa1eb52cb3173de4b3941e0fc4ec1b127bbeed60196
EDGES_PATH=../edges

DM_SOCKET_URL=http://localhost:3000

DATABASE_URL_COA="mysql://root:changeme@localhost:64999/coa"
DATABASE_URL_COVER_INFO="mysql://root:changeme@localhost:64999/cover_info"
DATABASE_URL_DM="mysql://root:changeme@localhost:64999/dm"
DATABASE_URL_DM_STATS="mysql://root:changeme@localhost:64999/dm_stats"
DATABASE_URL_EDGECREATOR="mysql://root:changeme@localhost:64999/edgecreator"
1 change: 1 addition & 0 deletions apps/edgecreator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"vue3-simple-typeahead": "^1.0.11",
"~edgecreator-api": "workspace:*",
"~edges": "workspace:*",
"~group-by": "workspace:*",
"~prisma-schemas": "workspace:*",
"~socket.io-client-services": "workspace:*",
"~web": "workspace:*"
Expand Down
1 change: 1 addition & 0 deletions apps/edgecreator/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import "bootstrap/dist/css/bootstrap.css";
import "bootstrap-vue-next/dist/bootstrap-vue-next.css";
import "vue3-simple-typeahead/dist/vue3-simple-typeahead.css"; //Optional default CSS

import "~group-by";
import { createHead } from "@unhead/vue";
import { BCarousel, BCarouselSlide } from "bootstrap-vue-next";
import { createPinia } from "pinia";
Expand Down
3 changes: 3 additions & 0 deletions apps/edgecreator/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
"~dm-types/*": [
"../../packages/types/*"
],
"~group-by": [
"../../util/group-by"
],
"~prisma-schemas/*": [
"../../packages/prisma-schemas/*"
],
Expand Down
1 change: 1 addition & 0 deletions apps/edgecreator/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export default defineConfig({
"~dm-services": path.resolve(__dirname, "../../packages/api/services"),
"~edgecreator-services": path.resolve(__dirname, "api/services"),
"~dm-types": path.resolve(__dirname, "../../packages/types"),
"~group-by": path.resolve(__dirname, "../../util/group-by"),
"~socket.io-services": path.resolve(
__dirname,
"../../packages/socket.io-services"
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5bdfd8c

Please sign in to comment.