Skip to content

Commit 6054be5

Browse files
committed
consolidate repos
2 parents 1e654d2 + 49216fd commit 6054be5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+21342
-1
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
node_modules
2+
.DS_Store
3+
nohup.out
4+
.DS_Store
5+
dev.js

AdvancedNodeStarter/.gitignore

Whitespace-only changes.

AdvancedNodeStarter/.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
language: node_js
2+
node_js:
3+
- "8"
4+
dist: trusty
5+
services:
6+
- mongodb
7+
- redis-server
8+
env:
9+
- NODE_ENV=ci PORT=3000
10+
cache:
11+
directories:
12+
- node_modules
13+
- client/node_modules
14+
install:
15+
- npm install
16+
- npm run build
17+
script:
18+
- nohup npm run start &
19+
- sleep 3
20+
- npm run test

AdvancedNodeStarter/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# AdvancedNodeStarter
2+
Starting project for a course on Advanced Node @ Udemy

AdvancedNodeStarter/client/.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

AdvancedNodeStarter/client/README.md

Lines changed: 2138 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)