/
Spinalcom Admin
Spinalcom Admin
Goal of the tutorial
The goal of this tutorial is to initiate you to the Spinalcom Admin.
Installation
First create a new folder and initialize it using npm.
$ mkdir newfolder $ cd newfolder $ npm init -y
Once this is done there are 2 ways to install Spinalcom Admin.
A. Without editing package.json
npm i https://github.com/spinalcom/spinal-browser-admin.git
B. By editing package.json
Add spinal-browser-admin to the dependencies in package.json.
package.json
{ "name": "newfolder", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], "author": "", "license": "ISC", // here "dependencies": { "spinal-browser-admin": "git+https://github.com/spinalcom/spinal-browser-admin" } }
Then install it using npm.
$ npm install
Configuration
You can check the IP configuration (Port number, IP localhost) in .config.json.
Launch the hub
Launch the hub and local organs with:
$ pm2 start launch.config.js
You can see if the hub is running with:
$ pm2 list
Basic usage
The Admin is a browser application, you need to access it via a browser (you may change the host/port corresponding to your .config.json file):
http://127.0.0.1:7777/html/admin
The basic account is:
Username | Client ID | Password |
---|---|---|
admin | 168 | JHGgcz45JKilmzknzelf65ddDadggftIO98P |
, multiple selections available,
Related content
Spinalcom Drive
Spinalcom Drive
More like this
Spinalcom Viewer
Spinalcom Viewer
More like this
Spinalcore standard library organization
Spinalcore standard library organization
More like this
SpinalCore JS SDK
SpinalCore JS SDK
More like this
SpinalCore Qt SDK
SpinalCore Qt SDK
More like this
SpinalGraph : Create your first Graph
SpinalGraph : Create your first Graph
More like this