You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Punt into object the variables for developement mode.
130
141
131
-
### eve-configs-production
142
+
### config-production.json file
132
143
133
144
Punt into object the variables for production mode.
134
145
135
-
### eve-configs
146
+
### config.json file
136
147
137
148
The object is generated based on the compilation mode (`development` or `production`). Into your app require this object for read the variables.
138
149
139
-
## Tips & Tricks
140
-
141
-
### File limit
142
-
143
-
If `EMFILE` file error is triggered use the command `ulimit -n 2048` to fix it.
144
-
145
-
### Set environment variables on Windows
150
+
### .everc file
146
151
147
-
To set environment variables in Windows use the tool from ***System in Control Panel*** (or by typing `environment` into the search box in start menu). For more details read this discussion on [Stackoverflow](http://stackoverflow.com/a/9250168).
152
+
This is a file configuration for eve.
148
153
149
-
### Set environment variables on Linux or Mac
154
+
Params:
150
155
156
+
-`editor`: this field indicates the editor that will open when the user clicks on the notification.
151
157
152
158
```
153
-
`nano ~/.profile`
154
-
155
-
export JSCRAMBLER_ACCESSKEY=<MY KEY>
156
-
export JSCRAMBLER_SECRETKEY=<MY SECRET>
159
+
{
160
+
"editor": "atom"
161
+
}
157
162
```
158
163
164
+
## Tips & Tricks
159
165
166
+
### File limit
160
167
161
-
## LICENSE
162
-
163
-
The MIT License (MIT)
164
-
165
-
Copyright (c) 2015 - 2016
166
-
167
-
Permission is hereby granted, free of charge, to any person obtaining a copy
168
-
of this software and associated documentation files (the "Software"), to deal
169
-
in the Software without restriction, including without limitation the rights
170
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
171
-
copies of the Software, and to permit persons to whom the Software is
172
-
furnished to do so, subject to the following conditions:
173
-
174
-
The above copyright notice and this permission notice shall be included in
175
-
all copies or substantial portions of the Software.
176
-
177
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
178
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
179
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
180
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
181
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
182
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
183
-
THE SOFTWARE.
168
+
If `EMFILE` file error is triggered use the command `ulimit -n 2048` to fix it.
0 commit comments