Skip to content

Commit

Permalink
chore(root): Ensure development environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouncey authored and raisedadead committed Sep 3, 2018
1 parent 46a217d commit dc00eb8
Show file tree
Hide file tree
Showing 225 changed files with 164 additions and 21,387 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
node_modules

.env

*lib-cov
*~
*.seed
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,13 +310,13 @@ mongod
npm run only-once

# Start the application without a backend server
npm run develop
cd ./client && npm run develop

# If you require the backend server to be operational (persisted user interations/api calls)
# Use this command instead
# Note: This command requires that you have a correctly seeded mongodb instance running
# Note: If you are runnoing the backend server inside a docker container, use the command above
npm run develop-server
node develop-client-server.js

```

Expand Down
21 changes: 13 additions & 8 deletions api-server/.babelrc.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
module.exports = {
plugins: [require.resolve('babel-plugin-transform-function-bind')],
plugins: [
require.resolve('babel-plugin-transform-function-bind'),
require.resolve('@babel/plugin-proposal-class-properties'),
require.resolve('@babel/plugin-proposal-object-rest-spread')
],
presets: [
[
require.resolve('@babel/preset-env'), {
require.resolve('@babel/preset-env'),
{
targets: {
node: 'current'
}
}
]
]
}
node: '8',
},
},
],
],
}
1 change: 1 addition & 0 deletions api-server/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ tmp

npm-debug.log
node_modules
compiled
.idea
*.iml
.DS_Store
Expand Down
86 changes: 0 additions & 86 deletions api-server/common/app/App.jsx

This file was deleted.

25 changes: 0 additions & 25 deletions api-server/common/app/Child-Container.jsx

This file was deleted.

43 changes: 0 additions & 43 deletions api-server/common/app/Flash/Flash.jsx

This file was deleted.

20 changes: 0 additions & 20 deletions api-server/common/app/Flash/flash.less

This file was deleted.

1 change: 0 additions & 1 deletion api-server/common/app/Flash/index.js

This file was deleted.

1 change: 0 additions & 1 deletion api-server/common/app/Flash/ns.json

This file was deleted.

17 changes: 0 additions & 17 deletions api-server/common/app/Flash/redux/get-messages-epic.js

This file was deleted.

58 changes: 0 additions & 58 deletions api-server/common/app/Flash/redux/index.js

This file was deleted.

43 changes: 0 additions & 43 deletions api-server/common/app/Flash/redux/utils.js

This file was deleted.

Loading

0 comments on commit dc00eb8

Please sign in to comment.