Skip to content

Commit

Permalink
tidy up development settings
Browse files Browse the repository at this point in the history
  • Loading branch information
icereval committed Jul 9, 2018
1 parent 775543e commit ebebe57
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
{
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false
}
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"tmp/**": true,
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"tmp/**": true,
},
}
2 changes: 1 addition & 1 deletion .watchmanconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"ignore_dirs": ["tmp", "dist"]
"ignore_dirs": ["tmp", "dist", "node_modules"]
}
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ You will need the following things properly installed on your computer.
* [Git](https://git-scm.com/)
* [Node.js](https://nodejs.org/) (with NPM)
* [Ember CLI](https://ember-cli.com/)
* [Watchman](https://facebook.github.io/watchman/)

## Installation

Expand All @@ -27,6 +28,19 @@ You will need the following things properly installed on your computer.

## Running / Development

### Mac OS File Descriptor Limits

Watchman states "*Only applicable on OS X 10.6 and earlier*". Though it's been observed this setting can remain incorrect on systems where the operation system was upgraded from a legacy version.

> Putting the following into a file named /etc/sysctl.conf on OS X will cause these values to persist across reboots:
```bash
kern.maxfiles=10485760
kern.maxfilesperproc=1048576
```

### Development

Configure the application for local development, add the following to your `config/local.js`:
```ts
module.exports = {
Expand Down

0 comments on commit ebebe57

Please sign in to comment.