UNPKG

803 BMarkdownView Raw
1This is the command line utility for working with the DigitalSpaces.app software platform.
2
3If you have any questions or are looking for help using the CLI or the DigitalSpaces.app platform join our Slack channel:
4https://digitalspaces.app/slack
5
6###Installing
7```bash
8npm install -g @digitalspaces/cli
9```
10
11###Registering a New User
12```bash
13ds user register
14```
15
16###Logging In
17```bash
18ds user login
19```
20
21###Create a Digital Space
22```bash
23ds space create
24```
25
26###Create a Blueprint Repository
27```bash
28ds repo create
29```
30
31###Create an Autonomous Blueprint
32```bash
33ds blueprint create
34```
35
36###Pull an Autonomous Blueprint as a File
37```bash
38ds blueprint pull
39```
40
41###Push an Autonomous Blueprint
42```bash
43ds blueprint push ./name_of_file.js
44```
45
46###Create an Autonomous Object
47```bash
48ds object create
49```