-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit: direct clone of internal boilerplate from 98Labs
- Loading branch information
Richard Malibiran
committed
Nov 7, 2019
0 parents
commit 78e8ea7
Showing
50 changed files
with
7,726 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
NODE_ENV=local | ||
ENV=local | ||
PORT=3000 | ||
|
||
LOG_LEVEL=debug | ||
LOG_DIRECTORY=./logs | ||
|
||
DB_HOST=localhost | ||
DB_PORT=5432 | ||
DB_USER=boilerplate | ||
DB_PASS=boilerplate | ||
DB_DATABASE_NAME=boilerplate | ||
DB_DIALECT=postgres | ||
|
||
JWT_SECRET=d2FrZSBtZSB1cCB3aGVuIHNlcHRlbWJlciBlbmRzc | ||
|
||
# follow the following format https://github.com/zeit/ms.js | ||
JWT_VALIDITY=2h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# API keys and secrets | ||
.env | ||
|
||
# Dependency directory | ||
node_modules | ||
bower_components | ||
|
||
# Editors | ||
.idea | ||
*.iml | ||
.vscode | ||
|
||
# OS metadata | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Ignore built ts files | ||
dist/**/* | ||
dist-migrations/**/* | ||
|
||
# Logging files | ||
*.log | ||
logs/**/* | ||
|
||
# Test Coverage (Istanbul) | ||
.nyc_output/**/* | ||
coverage/**/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const dotenv = require("dotenv"); | ||
dotenv.config({ path: '.env' }); | ||
|
||
const path = require('path'); | ||
|
||
module.exports = { | ||
'config': path.resolve('src', 'config', 'database.ts'), | ||
'models-path': path.resolve('src', 'models'), | ||
'seeders-path': path.resolve('src', 'db', 'seeders'), | ||
'migrations-path': path.resolve('src', 'db', 'migrations') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2019 98Labs, Inc. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import * as shell from 'shelljs'; | ||
|
||
shell.cp('.env', 'dist/'); | ||
|
||
// shell.cp('-R', 'src/public/js/lib', 'dist/public/js/'); | ||
// shell.cp('-R', 'src/public/fonts', 'dist/public/'); | ||
// shell.cp('-R', 'src/public/images', 'dist/public/'); |
Oops, something went wrong.