-
Notifications
You must be signed in to change notification settings - Fork 93
Creating and starting a project guide with screenshots
Dmitry edited this page Jul 31, 2018
·
2 revisions
To create a new project open new terminal and enter:
ngrest create Echo
Project is created:
When a project is generated, an echo
operation is added into each service. It's only provided as fast example and can be safely removed when you write your own operations.
You can start your project right after it's created:
cd echo
ngrest
Project is now built and started:
Now you can try your service operations: <Ctrl>+Click
a link marked blue to open services tester in your browser.
Basic information about the service with auto-generated description:
To test echo
operation click "echo" link:
Enter something into "text" field and click "Submit".
Result of echo operation:
You can add new services into existing project by using addservice
command.
ngrest addservice Extra