a Sails v1 application
- Sails framework documentation
- Version notes / upgrading
- Deployment tips
- Community support options
- Professional / enterprise options
- Postman Team
- Install MongoDB
- Install Sails.js:
npm install -g sails
- Install dependencies:
npm install
- Run:
sails lift
orsails lift --port NUMBER
if you encounterEADDRINUSE
- Run:
npm test
orPORT=... npm test
to verify Mongo has been set up - Open Postman
- Create a new GET request
- Enter:
http://localhost:1337/api/v1/blobs/view
and click Send - Expected output:
status 200 ok
- Add an appropriate API test for any server/logic related change
- Run:
npm test
orPORT=... npm test
and ensure all test cases pass before making a PR
This app was originally generated on Mon Jul 27 2020 13:07:39 GMT-0500 (Central Daylight Time) using Sails v1.2.4.