Compare commits

..

No commits in common. "0d5a2109d5e6169239638ca7ad7bd9eb4bf81700" and "084691c294ff3bf4d09ef634ce2d0d81ef93c50d" have entirely different histories.

3 changed files with 3 additions and 10 deletions

View File

@ -8,9 +8,5 @@
"prettier.enable": false,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"javascript.preferences.quoteStyle": "single",
"javascript.preferences.importModuleSpecifierEnding": "minimal",
"typescript.preferences.importModuleSpecifierEnding": "minimal",
"typescript.preferences.includePackageJsonAutoImports": "on"
}
}

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