From 0d85948d75cc32a5f76c33cc17c79b109407f976 Mon Sep 17 00:00:00 2001 From: Matt Dorn Date: Thu, 4 Jan 2018 13:20:09 -0600 Subject: [PATCH] Create message API for Sails app. Fixes #393 --- 12factor/00_application.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/12factor/00_application.md b/12factor/00_application.md index 2973637..7d17573 100644 --- a/12factor/00_application.md +++ b/12factor/00_application.md @@ -19,7 +19,8 @@ DELETE | /message/ID | delete message with ID ## Setup * Install Sails.js (it's to Node.js what RoR is to Ruby): `sudo npm install sails -g` -* Create the application: `sails new messageApp && cd messageApp` +* Create the application: `sails new messageApp && cd messageApp` +* Create the `message` api: `sails generate api message` * Launch the application: `sails lift` ## First tests