Config changes

This commit is contained in:
2023-11-18 01:57:53 +03:00
parent c610a52881
commit cd111269e0
4 changed files with 15 additions and 8 deletions

View File

@@ -1,8 +1,8 @@
{ {
"singleQuote": true, "singleQuote": true,
"trailingComma": "all", "trailingComma": "all",
"semi": true, "semi": true,
"tabWidth": 4, "tabWidth": 4,
"printWidth": 150, "printWidth": 150,
"bracketSpacing": true "bracketSpacing": true
} }

View File

@@ -10,5 +10,5 @@
"**/node_modules": true "**/node_modules": true
}, },
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode",
} }

7
backend/.env.example Normal file
View File

@@ -0,0 +1,7 @@
DATABASE_PASSWORD=postgres
DATABASE_NAME=bot_db
DATABASE_USER=postgres
DATABASE_HOST=localhost
DATABASE_PORT=5432
SERVER_PORT=3000

View File

@@ -18,4 +18,4 @@
"forceConsistentCasingInFileNames": false, "forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false "noFallthroughCasesInSwitch": false
} }
} }