Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IngJorgeLuisMayorga committed Nov 24, 2019
1 parent 66b055b commit 5b5adf4
Show file tree
Hide file tree
Showing 63 changed files with 2,927 additions and 149 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ DATABASE_TYPE = mysql
DATABASE_HOST = cattle-db.cgllnmrswrfs.us-west-2.rds.amazonaws.com
DATABASE_PORT = 3306
DATABASE_USERNAME = admin
DATABASE_PASSWORD = GZIIM#Rj*I2#sprRWc
DATABASE_PASSWORD = GZIIM#RjxI2#sprRWc
DATABASE_DBNAME = cattleio_core
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"git.ignoreLimitWarning": true
}
10 changes: 10 additions & 0 deletions config/database.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const dbSettings = {
key: '_',
type: 'mysql',
hash: '*I2',
host: 'cattle-db.cgllnmrswrfs.us-west-2.rds.amazonaws.com',
port: 3306,
username: 'admin',
password: 'GZIIM#Rj_#sprRWc',
database: 'cattleio_core',
};
9 changes: 9 additions & 0 deletions keys/jwt.private.key
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-----BEGIN RSA PRIVATE KEY-----
MIIBOgIBAAJBAIE7yK70OfXFcsnquMbsAPTbzZM92vQms88rSxnHoFhEiyZDPKa3
0wMb7xkf3m7SEfRCp7/HKQGauVV0CQhbSJ0CAwEAAQJAH2unqVHb3bN56znUXxj2
SpI+czQwzfey9AW0prnwdEUqWx/G8TASbOrsig/Z73vtq3FzvW61kS8oVCMPWKi9
yQIhAO4cuAUf/F3iCBVyZS2t2aoHMqWyz0YklNYrEjXPZELLAiEAivEnL+1xl01m
FgttJ5czQRZ+2KZUaW+qD3SePhmR7TcCIQDNynJcs41Ikq7L4meBuCxT4A6s2MJ9
a+ZaxzTg3tJXSwIgXv7SVCp75367tYbKcq8mE/JVd7sBK7V1CGwrZToGU7ECIEwS
gZtk538L7EQ3inp2HiySC9kQlO4OTzSnyuWLHg6U
-----END RSA PRIVATE KEY-----
4 changes: 4 additions & 0 deletions keys/jwt.public.key
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-----BEGIN PUBLIC KEY-----
MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAIE7yK70OfXFcsnquMbsAPTbzZM92vQm
s88rSxnHoFhEiyZDPKa30wMb7xkf3m7SEfRCp7/HKQGauVV0CQhbSJ0CAwEAAQ==
-----END PUBLIC KEY-----
19 changes: 19 additions & 0 deletions ormconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "mysql",
"host": "cattle-db.cgllnmrswrfs.us-west-2.rds.amazonaws.com",
"port": 3306,
"username": "admin",
"password": "GZIIM#Rj*I2#sprRWc",
"database": "cattleio_core",
"synchronize": true,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
]
}
Loading

0 comments on commit 5b5adf4

Please sign in to comment.