mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 20:51:25 +03:00
rebase
This commit is contained in:
parent
2ea972e77d
commit
80d1e1c051
4 changed files with 25 additions and 37 deletions
38
.gitignore
vendored
38
.gitignore
vendored
|
@ -1,38 +1,2 @@
|
||||||
.gradle
|
|
||||||
build/
|
|
||||||
!gradle/wrapper/gradle-wrapper.jar
|
|
||||||
!**/src/main/**/build/
|
|
||||||
!**/src/test/**/build/
|
|
||||||
|
|
||||||
### STS ###
|
|
||||||
.apt_generated
|
|
||||||
.classpath
|
|
||||||
.factorypath
|
|
||||||
.project
|
|
||||||
.settings
|
|
||||||
.springBeans
|
|
||||||
.sts4-cache
|
|
||||||
bin/
|
|
||||||
!**/src/main/**/bin/
|
|
||||||
!**/src/test/**/bin/
|
|
||||||
|
|
||||||
### IntelliJ IDEA ###
|
|
||||||
.idea
|
.idea
|
||||||
*.iws
|
config.yaml
|
||||||
*.iml
|
|
||||||
*.ipr
|
|
||||||
out/
|
|
||||||
!**/src/main/**/out/
|
|
||||||
!**/src/test/**/out/
|
|
||||||
|
|
||||||
### NetBeans ###
|
|
||||||
/nbproject/private/
|
|
||||||
/nbbuild/
|
|
||||||
/dist/
|
|
||||||
/nbdist/
|
|
||||||
/.nb-gradle/
|
|
||||||
|
|
||||||
### VS Code ###
|
|
||||||
.vscode/
|
|
||||||
|
|
||||||
src/main/resources/application.yaml
|
|
||||||
|
|
5
config_sample.yaml
Normal file
5
config_sample.yaml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
db_user: DATABASE_USERNAME
|
||||||
|
db_password: DATABASE_PASSWORD
|
||||||
|
db_host: DATABASE_HOST
|
||||||
|
db_name: DATABASE_NAME
|
||||||
|
db_port: 5432
|
11
package.json
Normal file
11
package.json
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"name": "currency-chart",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "main.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "Redume",
|
||||||
|
"license": "ISC"
|
||||||
|
}
|
8
postgresql.js
Normal file
8
postgresql.js
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
const pg = require("pg");
|
||||||
|
const pool = new pg.Pool({
|
||||||
|
user: "",
|
||||||
|
password: "",
|
||||||
|
host: "",
|
||||||
|
port: 5432,
|
||||||
|
database: ""
|
||||||
|
})
|
Loading…
Add table
Reference in a new issue