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
$ docker tag apinf/platform:INSERT_VERSION_HERE apinf/platform:latest
182
182
```
183
183
184
184
### Pushing to Docker Hub
185
185
186
-
To publish the new images to our [Docker Hub repository](https://hub.docker.com/r/apinf/apinf/):
186
+
To publish the new images to our [Docker Hub repository](https://hub.docker.com/r/apinf/platform/):
187
187
188
188
```
189
-
$ docker push apinf/apinf:INSERT_VERSION_HERE
190
-
$ docker push apinf/apinf:latest
189
+
$ docker push apinf/platform:INSERT_VERSION_HERE
190
+
$ docker push apinf/platform:latest
191
191
```
192
192
193
193
# Contributing code
@@ -220,7 +220,7 @@ In a nutshell, **write code for humans to read and understand**. Our code will b
220
220
* Placing comments on the preceeding line, as opposed to the end of the line, improves readability
221
221
* comment can be long, e.g. 80 characters
222
222
* comments at same level of nesting fall in-line with one another vertically
223
-
223
+
224
224
#### Example comment
225
225
```js
226
226
// Try and find the missing widget
@@ -259,7 +259,7 @@ let missingWidgets = Widgets.find().fetch();
259
259
if (missingWidgets) {
260
260
// Count the missing widgets
261
261
let missingWidgetsCount =missingWidgets.length
262
-
262
+
263
263
// Alert the boss!
264
264
console.log(missingWidgetsCount, "widgets are missing!");
265
265
}
@@ -307,7 +307,7 @@ Configure your IDE to use eslint with the Airbnb styleguide.
307
307
Reference: Meteor Guide - Check Your Code with ESLint [Integrating with your editor](https://guide.meteor.com/code-style.html#eslint-editor)
308
308
309
309
# File structure
310
-
This project is organized around a 'module' / 'component' architecture.
310
+
This project is organized around a 'module' / 'component' architecture.
311
311
312
312
By 'module', we mean anything that has it's own database collection and one or more routes. Components are more closely related to the idea of [WebComponents](http://webcomponents.org/), which are intended to be reusable, hierarchical user interface elements. Modules are located in the project root, with components in the client sub-directory.
Copy file name to clipboardExpand all lines: INSTALL.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
13
13
1. Run API-umbrella container http://api-umbrella.readthedocs.io/en/latest/getting-started.html#running-with-docker
14
14
2. Obtaining API Key and Authentication token. You can obtain the *Authentication Token* and *API Key* from the API Umbrella platform by following instructions in the [Getting Started](http://apiumbrella.io/docs/getting-started/) and [API Umbrella Admin API](http://apiumbrella.io/docs/admin-api/) documentation.
15
-
3. Run APInf container ```docker run -p 8080:80 -e MONGO_URL=mongodb://localhost:27017/your_db -e MAIL_URL=smtp://some.mailserver.com:25 -e ROOT_URL=http://YOUR_SITE_DOMAIN apinf/apinf:latest```
15
+
3. Run APInf container ```docker run -p 8080:80 -e MONGO_URL=mongodb://localhost:27017/your_db -e MAIL_URL=smtp://some.mailserver.com:25 -e ROOT_URL=http://YOUR_SITE_DOMAIN apinf/platform:latest```
0 commit comments