Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Commit

Permalink
mono repo
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmota committed Mar 19, 2019
1 parent c415af2 commit 16ad3f3
Show file tree
Hide file tree
Showing 140 changed files with 35,201 additions and 4,036 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,4 @@ tmp
###################
hello.txt
data.txt
todo.txt
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
bootstrap:
@lerna bootstrap

test:
@npm run test

cli:
@node packages/client/cli.js --help

server:
@(cd packages/server && npm start)

web:
@(cd packages/web && npm start)
Binary file modified designAssets/streamhut.psd
Binary file not shown.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const server = require('./src/server')
const server = require('./packages/server/server')

server.start()
6 changes: 6 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"packages": [
"packages/*"
],
"version": "0.0.1"
}

0 comments on commit 16ad3f3

Please sign in to comment.