fss-link 1.9.1 → 1.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/bundle/fss-link-main.js +1505 -1440
- package/docs/README.md +1 -0
- package/docs/SLASH-COMMANDS.md +186 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -33,6 +33,16 @@ npm run bundle
|
|
|
33
33
|
sudo npm install -g .
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
### First run — bootstrap the database
|
|
37
|
+
|
|
38
|
+
The database (`~/.fss-link/fss-link.db`) is created on the **first command that needs it**, not during `npm install`. If `fss-link` fails with "Database directory not found" or "Cannot save database", run:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
fss-link --version
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
This is the quickest way to bootstrap everything — it creates the directory, initialises the schema, and inserts default model configs. After that, `fss-link` (interactive) and `fss-link -p "..."` will work normally.
|
|
45
|
+
|
|
36
46
|
## Usage
|
|
37
47
|
|
|
38
48
|
```bash
|