Compare commits

..

No commits in common. "a191d8ca2ebce47ae25edea396d1e59da625b69f" and "983fa41cba3a4d537ab742a149b86d6c6a87f5bf" have entirely different histories.

3 changed files with 5 additions and 16 deletions

View File

@ -1,6 +1,6 @@
FROM node:alpine
WORKDIR /app
COPY ./package.json ./
RUN yarn
RUN npm i
COPY ./ ./
ENTRYPOINT [ "yarn","dev" ]

View File

@ -12,12 +12,9 @@ services:
DB_USER: lfk
DB_PASSWORD: changeme
DB_NAME: lfk
NODE_ENV: production
backend_db:
image: postgres:11-alpine
environment:
POSTGRES_DB: lfk
POSTGRES_PASSWORD: changeme
POSTGRES_USER: lfk
ports:
- 5432:5432

View File

@ -1,20 +1,12 @@
{
"compilerOptions": {
"target": "ES2020",
"target": "es2017",
"module": "commonjs",
"rootDir": "./src",
"outDir": "./build",
"esModuleInterop": true,
"strict": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": false
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
"emitDecoratorMetadata": true
}
}