ordamo-v3-sdk-demo-app
v1.1.1
Published
A demo application that uses the ordamo-v3-sdk package. This can be used as a template for new Ordamo V3 apps.
Downloads
6
Readme
Ordamo V3 SDK demo app
A demo application that uses the ordamo-v3-sdk
package. It demonstrates key features of the
SDK and contains a configured development environment with scripts for running release builds,
unit tests and a local development server with live reloading.
To view the documentation, run npm start
from the same folder as this file and go to
[http://localhost:9966/] in your browser.
Run npm run release
to create a new release build.
Creating new SDK apps
This project can be used as a template for new Ordamo V3 apps. Copy the folder, then:
- Edit package.json:
- alter the package name and version to be appropriate for your app
- Remove the
"repository"
field and add"private": true
to prevent the app being published to NPM - remove packages that you don't intend to use from the dependencies in package.json
- Edit LICENSE.txt to have correct copyright and license information
- Edit README.md (this file!) to remove these instructions and insert a description of your app.
- Delete ordamo-v3-sdk-demo-app release files from the
releases/
folder. - Delete the
.git
folder, which contains the demo app history and usegit init
to create your own new repo. Or, if you already have a repo, then just copy the files over to it making sure to include the hidden.gitignore
file but not the.git
folder.