-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from TTUSDC/dev-environment-setup
Dev environment setup
- Loading branch information
Showing
99 changed files
with
9,780 additions
and
12,019 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"presets": [ | ||
"es2015", | ||
"react" | ||
"env", | ||
"react", | ||
"stage-2" | ||
], | ||
"plugins": [ | ||
"transform-object-rest-spread", | ||
plugins: [ | ||
"react-hot-loader/babel" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# To use these environment variables run `yarn run config` | ||
|
||
# Used for absolute paths | ||
NODE_PATH=src | ||
|
||
# All environment variables need `REACT_APP_` as a prefix | ||
|
||
# Firebase: Not all of these will be used, it just depends on what we enable | ||
apiKey="apiKeyFromFirebase", | ||
authDomain="authDomainFromFirebase", | ||
databaseURL="databaseURLFromFirebase", | ||
projectId="projectIdFromFirebase", | ||
storageBucket="storageBucketFromFirebase", | ||
messagingSenderId="messagingSenderIdFromFirebase" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
**/*{.,-}min.js | ||
registerServiceWorker.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,31 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Docs | ||
./docs/ | ||
# Jetbrains | ||
.idea/ | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
# dependencies | ||
/node_modules | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
# testing | ||
/coverage | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/*.map | ||
build/*.json | ||
build/*.js | ||
# production | ||
/build | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# Typescript v1 declaration files | ||
typings/ | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
# Docs | ||
/docs | ||
|
||
# dotenv environment variables file | ||
# misc | ||
.DS_Store | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# dbdatagen | ||
devutils/dbdatagen/cpceed-firebase-admin-key.json | ||
devutils/dbdatagen/gen-uids.json | ||
devutils/dbdatagen/gen-script.json | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editor | ||
*.swp | ||
.tern-project | ||
.tern-config | ||
.tern-port |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
const rewireReactHotLoader = require('react-app-rewire-hot-loader'); | ||
|
||
/* config-overrides.js */ | ||
module.exports = function override(config, env) { | ||
const newConfig = rewireReactHotLoader(config, env); | ||
return newConfig; | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.