forked from SamuelWitke/Partify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.config.js
69 lines (67 loc) · 2.26 KB
/
project.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
const ip = require('ip')
const NODE_ENV = process.env.NODE_ENV || 'development'
module.exports = {
/** The environment to use when building the project */
env: NODE_ENV,
/** The full path to the project's root directory */
basePath: __dirname,
/** The name of the directory containing the application source code */
srcDir: 'src',
/** The file name of the application's entry point */
main: 'main',
/** The name of the directory in which to emit compiled assets */
outDir: 'dist',
/** The base path for all projects assets (relative to the website root) */
publicPath: NODE_ENV === 'development' ? `http://${ip.address()}:3000/` : '/',
/** Whether to generate sourcemaps */
sourcemaps: true,
/** A hash map of keys that the compiler should treat as external to the project */
externals: {},
/** A hash map of variables and their values to expose globally */
globals: {},
/** Whether to enable verbose logging */
verbose: false,
/** The list of modules to bundle separately from the core application code */
vendors: [
'react',
'react-dom',
'redux',
'react-redux',
'redux-thunk',
'react-router',
'react-redux-firebase',
'material-ui'
],
/**
* Settings used to create src/config.js using firebase-ci
* in ci environment. If you are running locally, go to src/config.js.
*/
ci: {
development: {
firebase: {
apiKey: "AIzaSyC9z35c77dSgRsqSVh_fLsCBsR3kV_21Y8",
authDomain: "partypeople-b736d.firebaseapp.com",
databaseURL: "https://partypeople-b736d.firebaseio.com",
storageBucket: "partypeople-b736d.appspot.com",
},
reduxFirebase: {
userProfile: 'users', // root that user profiles are written to
enableLogging: false, // enable/disable Firebase Database Logging
updateProfileOnLogin: false // enable/disable updating of profile on login
}
},
production: {
firebase: {
apiKey: "AIzaSyC9z35c77dSgRsqSVh_fLsCBsR3kV_21Y8",
authDomain: "partypeople-b736d.firebaseapp.com",
databaseURL: "https://partypeople-b736d.firebaseio.com",
storageBucket: "partypeople-b736d.appspot.com",
},
reduxFirebase: {
userProfile: 'users',
enableLogging: false,
updateProfileOnLogin: false
}
}
}
}