-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: general project cleanup (#68)
Removed unuised files, added a custom cspell dictionary, and fixed a few seeding errors
- Loading branch information
Showing
69 changed files
with
892 additions
and
951 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
abil | ||
Amare | ||
Amashia | ||
Aodhan | ||
Aquan | ||
Arboria | ||
Archfey | ||
Branok | ||
buildx | ||
Caelaum | ||
Caoimhe | ||
Celestials | ||
Ciaradh | ||
Daeris | ||
Darkvision | ||
Eira | ||
Everfather | ||
Felvcor | ||
Felvos | ||
Feywild | ||
Genasi | ||
Halflings | ||
hexblade | ||
housecats | ||
Insertable | ||
Jarekos | ||
jmcdo | ||
Kitsune | ||
Klinge | ||
Krypta | ||
Kurio | ||
Latubor | ||
lightcookie | ||
McDoniel | ||
Meister | ||
Militaris | ||
Millis | ||
Naga | ||
Nagan | ||
Nagas | ||
Ordin | ||
pactum | ||
Pomdra | ||
Proecerta | ||
Seele | ||
Seelie | ||
Shadowfell | ||
Shapeshifter | ||
spellcasting | ||
Spinne | ||
Tabaxi | ||
Tadhg | ||
Thirio | ||
Tsumi | ||
Unseelie | ||
unteris | ||
Vatcher | ||
Venlustel | ||
Verfell | ||
Viridi | ||
vitoak |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM node:20.2-alpine3.18 as unteris-node | |
RUN npm i -g [email protected] && \ | ||
apk add --no-cache \ | ||
dumb-init=1.2.5-r2 | ||
|
||
FROM unteris-node AS unteris-common | ||
|
||
WORKDIR /src | ||
|
@@ -21,18 +21,18 @@ ENV CYPRESS_INSTALL_BINARY=0 | |
RUN pnpm i | ||
|
||
FROM unteris-common AS migrations-build | ||
COPY apps/kysely-cli ./apps/kysely-cli | ||
COPY apps/cli ./apps/cli | ||
COPY libs/server ./libs/server | ||
COPY libs/db ./libs/db | ||
COPY libs/shared ./libs/shared/ | ||
RUN pnpm nx run kysely-cli:build:production | ||
RUN pnpm nx run cli:build:production | ||
|
||
FROM unteris-node AS migrations-prod | ||
LABEL description="The image that runs migrations for the Unteris Database. This should be ran as one-off commands on demand" | ||
USER node | ||
WORKDIR /src | ||
COPY --from=migrations-build --chown=node:node /src/dist ./dist | ||
RUN cp ./dist/apps/kysely-cli/package.json ./package.json | ||
RUN cp ./dist/apps/cli/package.json ./package.json | ||
ENV NODE_ENV=production | ||
RUN pnpm i | ||
CMD ["dumb-init", "node", "dist/apps/kysely-cli/main", "migrate"] | ||
CMD ["dumb-init", "node", "dist/apps/cli/main", "migrate"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
/* eslint-disable */ | ||
export default { | ||
displayName: "kysely-cli", | ||
displayName: "cli", | ||
preset: "../../jest.preset.js", | ||
testEnvironment: "node", | ||
transform: { | ||
"^.+\\.[tj]s$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.spec.json" }], | ||
}, | ||
moduleFileExtensions: ["ts", "js", "html"], | ||
coverageDirectory: "../../coverage/apps/kysely-cli", | ||
coverageDirectory: "../../coverage/apps/cli", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.