Skip to content

Commit 030b723

Browse files
committed
preparing for new release
1 parent b7745b0 commit 030b723

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +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-
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
54+
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
5555

5656
### Using an API as a DB
5757

5858
```
5959
$ gulp service --name yourEndpointWithAPIAsDB --baseurl http://localhost:8080 --endpoint users
6060
```
6161

62-
### Using an SQL compartible database
62+
### Using an SQL compatible database
6363

6464
```
6565
$ 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)