Skip to content

Commit

Permalink
Initial server transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
ttshivers committed Jun 28, 2020
1 parent 070229c commit bfc4bd0
Show file tree
Hide file tree
Showing 8 changed files with 2,885 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 100
19 changes: 19 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"env": {
"es6": true,
"node": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,6 @@ dist

# TernJS port file
.tern-port

# Config file
config.json
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: node_js
node_js:
- node
- lts/*

script:
- npm run lint
- npm run build
12 changes: 12 additions & 0 deletions config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import nconf from 'nconf';

nconf.argv()
.env({ lowerCase: true })
.file({ file: 'config.json' });

nconf.defaults({
port: 8089,
baseurl: '/',
});

export default nconf;
Loading

0 comments on commit bfc4bd0

Please sign in to comment.