-
Notifications
You must be signed in to change notification settings - Fork 461
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(content): bq api - codigo necesario por mongoDB setup, mover…
… docker reqs, fix spawn en Windows (#1353) * trabajo necesario por mongoDB setup y spawn en Windows * cambios a README * ideas para adiciones GETTING_STARTED * comentando config y e2e tests mejor * mdlint fixes * separating docker and mongo guides * remove mongo deps from package.json * clean mongoDB references de proyecto * patch for Mongo * Update projects/04-burger-queen-api/README.md * cambios al readme y guia * mdlint fixes * readd jsonwebtoken dep * remove ws from patch * patch in the wrong place * patch mongoDB created from project not from bootcamp * actualizar table of contents * update guia and remove mongoose refs * minor corrections * rehacer el patch * corrections * remove redundant checklist, node driver resource * Update TODO projects/04-burger-queen-api/controller/users.js Co-authored-by: Alfredo González <[email protected]> * mas detalle en TODO comentarios * quitar mysql postgres de readme inicial, hacker edition docker * apply and remove patch for e2e tests * linter and section for hacker edition * Apply grammar and spelling suggestions from code review Co-authored-by: Mariano Crowe <[email protected]> * remove MySQL and add code link for snippet * mas correciones de spelling, con uso de extension * Update auth.js * Apply suggestions from code review * update pt README * translations in pt, editions of docker readme * borra parte 1 de docker, es redundante * mdlint fixes * cambios de connect y TODOs * agregamos status de resp en globalSetup errors * Update projects/04-burger-queen-api/guides/GETTING-STARTED-MONGODB.md Co-authored-by: Alfredo González <[email protected]> * Apply suggestions from code review Co-authored-by: Alfredo González <[email protected]> * espanol no pt, error response * Update README.md guides url * Update README.pt.md url guides y texto duplicado --------- Co-authored-by: Alfredo González <[email protected]> Co-authored-by: Mariano Crowe <[email protected]>
- Loading branch information
1 parent
6de8e2f
commit e918faf
Showing
15 changed files
with
1,073 additions
and
363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
exports.port = process.argv[2] || process.env.PORT || 8080; | ||
exports.dbUrl = process.env.DB_URL || 'mongodb://localhost:27017/test'; | ||
exports.dbUrl = process.env.MONGO_URL || process.env.DB_URL || 'mongodb://127.0.0.1:27017/test'; | ||
exports.secret = process.env.JWT_SECRET || 'esta-es-la-api-burger-queen'; | ||
exports.adminEmail = process.env.ADMIN_EMAIL || 'admin@localhost'; | ||
exports.adminPassword = process.env.ADMIN_PASSWORD || 'changeme'; |
Oops, something went wrong.