Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tmkelly28 committed Sep 15, 2017
2 parents 4e894de + e99b337 commit bc46e73
Show file tree
Hide file tree
Showing 6 changed files with 5,106 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Boilermaker
# BoilerMade

*Good things come in pairs*

Looking to mix up a backend with express/sequelize and a frontend with react/redux? That's `boilermaker`!
Looking to mix up a backend with express/sequelize and a frontend with react/redux? That's `BoilerMade`!

Follow along with the workshop to make your own! This canonical version can serve as a reference, or a starting point all on its own.

Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build-client": "webpack",
"build-client-watch": "webpack -w",
"deploy": "git checkout -b deploy && webpack -p && git add -f public/bundle.js public/bundle.js.map && git commit --allow-empty -m 'Deploying' && git push --force heroku deploy:master && git checkout master && git branch -D deploy",
"start": "node server",
"start": "webpack -p && node server",
"start-dev": "npm run build-client-watch & npm run start-server",
"start-server": "NODE_ENV='development' nodemon server -e html,js,scss --ignore public",
"test": "NODE_ENV='test' DATABASE_URL='postgres://localhost:5432/boilermaker-test' mocha ./**/*.spec.js --compilers js:babel-register"
Expand Down Expand Up @@ -39,9 +39,7 @@
"redux-logger": "^2.8.1",
"redux-thunk": "^2.2.0",
"sequelize": "^4.3.1",
"socket.io": "^2.0.3"
},
"devDependencies": {
"socket.io": "^2.0.3",
"axios-mock-adapter": "^1.9.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
Expand Down
21 changes: 21 additions & 0 deletions public/bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width initial-scale=1.0'>
<title>Boilermaker</title>
<title>BoilerMade</title>
<script defer src="/bundle.js"></script>
</head>
<body>
Expand Down
Loading

0 comments on commit bc46e73

Please sign in to comment.