Skip to content

Commit

Permalink
Initial commit: direct clone of internal boilerplate from 98Labs
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Malibiran committed Nov 7, 2019
0 parents commit 78e8ea7
Show file tree
Hide file tree
Showing 50 changed files with 7,726 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .env.example
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
28 changes: 28 additions & 0 deletions .gitignore
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/**/*

11 changes: 11 additions & 0 deletions .sequelizerc
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')
}
21 changes: 21 additions & 0 deletions LICENSE.txt
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.
7 changes: 7 additions & 0 deletions copyStaticAssets.ts
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/');
Loading

0 comments on commit 78e8ea7

Please sign in to comment.