Skip to content

Commit 9f864a2

Browse files
committed
fixed merge conflict
2 parents 6b14a66 + 030b723 commit 9f864a2

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

README.md

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

54+
<<<<<<< HEAD
5455
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+
=======
57+
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
5559
5660
### Using an API as a DB
5761

5862
```
5963
$ gulp service --name yourEndpointWithAPIAsDB --baseurl http://localhost:8080 --endpoint users
6064
```
6165

66+
<<<<<<< HEAD
6267
### Using an SQL compartible database
68+
=======
69+
### Using an SQL compatible database
70+
>>>>>>> feature/sqlDatabaseSupport
6371
6472
```
6573
$ 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 || '8a398657a489e6362080738a18688b14b5c2bb5e',
21+
gitOAuthToken: process.env.GIT_OAUTH_TOKEN || '1f4b52a48226258e3ae040323155b064035350cc',
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 || '8a398657a489e6362080738a18688b14b5c2bb5e',
21+
gitOAuthToken: process.env.GIT_OAUTH_TOKEN || '1f4b52a48226258e3ae040323155b064035350cc',
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)