Skip to content

Commit 9b1f25c

Browse files
committed
fixed merge conflict and updated deployment key
1 parent b7eff72 commit 9b1f25c

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,23 +51,15 @@ Then generate your first API endpoint
5151
$ gulp service --name yourFirstEndpoint // This command will create a CRUD endpoint for yourFirstEndpoint.
5252
```
5353

54-
<<<<<<< HEAD
55-
With the `gulp service` command, you have the option of using either Mongo DB, an SQL compartible DB or using an API generated by this Express Generator as a database model. To use an API as a database you can pass the `baseurl` and the `endpoint` option for the API to the `gulp service `; for an SQL compartible db, pass the `sql` option. See an example below
56-
=======
5754
With the `gulp service` command, you have the option of using either Mongo DB, an SQL compatible DB or using an API generated by this Express Generator as a database model. To use an API as a database you can pass the `baseurl` and the `endpoint` option for the API to the `gulp service `; for an SQL compatible db, pass the `sql` option. See an example below
58-
>>>>>>> feature/sqlDatabaseSupport
5955

6056
### Using an API as a DB
6157

6258
```
6359
$ gulp service --name yourEndpointWithAPIAsDB --baseurl http://localhost:8080 --endpoint users
6460
```
6561

66-
<<<<<<< HEAD
67-
### Using an SQL compartible database
68-
=======
6962
### Using an SQL compatible database
70-
>>>>>>> feature/sqlDatabaseSupport
7163

7264
```
7365
$ gulp service --name yourEndpointWITHSQL --sql

config/development.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
letsencryptSSLVerificationBody: process.env.LETSENCRYPT_VERIFICATION_BODY || 'xvArhQBSilF4V30dGUagNAZ96ASipB0b0ex0kXn0za8._v6aFbaRYWeOmSebtlD-X4Ixf5tPsyULMsXM8HjsK-Q',
1919
maxContentLength: process.env.MAX_CONTENT_LENGTH || '9999',
2020
enforceSSL: process.env.ENFORCE_SSL || 'no',
21-
gitOAuthToken: process.env.GIT_OAUTH_TOKEN || '1f4b52a48226258e3ae040323155b064035350cc',
21+
gitOAuthToken: process.env.GIT_OAUTH_TOKEN || '86d6eb7abe03e8ae6a970cb67622e667c9c0f86a',
2222
queueUIUsername: process.env.QUEUE_UI_USERNAME || 'admin',
2323
queueUIPassword: process.env.QUEUE_UI_PASSWORD || 'password123/',
2424
queueUIPort: process.env.QUEUE_UI_PORT || 3000,

config/production.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
letsencryptSSLVerificationBody: process.env.LETSENCRYPT_VERIFICATION_BODY || 'xvArhQBSilF4V30dGUagNAZ96ASipB0b0ex0kXn0za8._v6aFbaRYWeOmSebtlD-X4Ixf5tPsyULMsXM8HjsK-Q',
1919
maxContentLength: process.env.MAX_CONTENT_LENGTH || '9999',
2020
enforceSSL: process.env.ENFORCE_SSL || 'no',
21-
gitOAuthToken: process.env.GIT_OAUTH_TOKEN || '1f4b52a48226258e3ae040323155b064035350cc',
21+
gitOAuthToken: process.env.GIT_OAUTH_TOKEN || '86d6eb7abe03e8ae6a970cb67622e667c9c0f86a',
2222
queueUIUsername: process.env.QUEUE_UI_USERNAME || 'admin',
2323
queueUIPassword: process.env.QUEUE_UI_PASSWORD || 'password123/',
2424
queueUIPort: process.env.QUEUE_UI_PORT || 3000,

0 commit comments

Comments
 (0)