Skip to content

Commit efa0d49

Browse files
author
Raja Rao DV
committedNov 30, 2016
update readme and add webpack.config.prod.js
1 parent 8e5c6d4 commit efa0d49

File tree

7 files changed

+90
-3133
lines changed

7 files changed

+90
-3133
lines changed
 

‎.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,8 @@ jspm_packages
3737

3838
# Optional REPL history
3939
.node_repl_history
40+
41+
#mac
42+
.DS_Store
43+
44+
stats.json

‎README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,15 @@ NOTE: In order to send email via PostMark or Sendgrid, you need to verify sender
5454
2. In terminal 2, run: `npm run dev`. This runs the development server(webpack-dev-server).
5555
3. Open browser and go to: `localhost:8080`
5656

57-
#####Note: If you open `localhost:3000` in browser, you'll see a "stale" production app, so while in development, **always go to `localhost:8080`**
57+
```
58+
export JWT_SECRET=somesecret
59+
export POSTMARK_API_TOKEN=bla-bla-bla-9619-a6d1185548cd
60+
export FROM_EMAIL=yourcompanyemail@company.com
61+
export NODE_ENV=development
62+
```
63+
64+
65+
####Note: If you open `localhost:3000` in browser, you'll see a "stale" production app, so while in development, **always go to `localhost:8080`**
5866

5967
####Production
6068
In production, we need to compile the **latest** client js and place it to `public` folder. This allows the main app server(Express) to also show the final app.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"scripts": {
66
"start": "node ./bin/www",
7-
"build": "node node_modules/.bin/webpack",
7+
"build": "node node_modules/.bin/webpack --config webpack.config.prod.js”",
88
"dev": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js"
99
},
1010
"engines": {

‎public/bundle.js

+26-3,128
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎utils/email.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
1-
var postmark = require("postmark")(process.env.POSTMARK_API_TOKEN);
2-
var async = require('async');
3-
var crypto = require('crypto');
41

52
if (!process.env.FROM_EMAIL) {
63
console.log('Please set: FROM_EMAIL environment variable. This is a validated email address to send emails from to other users for email verification, reset pwd etc')
74
process.exit();
85
}
96

7+
if(!process.env.POSTMARK_API_TOKEN) {
8+
console.error('Error! Please set POSTMARK_API_TOKEN from postmark email service.');
9+
process.exit();
10+
}
11+
12+
var postmark = require("postmark")(process.env.POSTMARK_API_TOKEN);
13+
var async = require('async');
14+
var crypto = require('crypto');
15+
1016
function sendWelcomeEmail(user, host, finalCB) {
1117
host = host.indexOf('localhost') >= 0 ? 'http://' + host : 'https://' + host;
1218

‎webpack.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
module.exports = {
23
entry: [
34
'./public/src/index.js'

‎webpack.config.prod.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
var webpack = require('webpack');
2+
3+
4+
module.exports = {
5+
entry: [
6+
'./public/src/index.js'
7+
],
8+
output: {
9+
path: __dirname + '/public/',
10+
publicPath: '/',
11+
filename: 'bundle.js'
12+
},
13+
module: {
14+
loaders: [{
15+
exclude: /node_modules/,
16+
loader: 'babel'
17+
}]
18+
},
19+
plugins: [
20+
new webpack.DefinePlugin({
21+
'process.env': {
22+
'NODE_ENV': JSON.stringify('production')
23+
}
24+
}),
25+
new webpack.optimize.UglifyJsPlugin({
26+
compress: {
27+
warnings: true
28+
}
29+
})
30+
],
31+
32+
resolve: {
33+
extensions: ['', '.js', '.jsx']
34+
},
35+
devServer: {
36+
historyApiFallback: true,
37+
contentBase: './public'
38+
}
39+
};

0 commit comments

Comments
 (0)