@semiont/backend 0.2.39 → 0.2.40
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 +50 -0
- package/package.json +7 -7
package/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# @semiont/backend
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@semiont/backend)
|
|
4
|
+
[](https://www.npmjs.com/package/@semiont/backend)
|
|
5
|
+
[](https://github.com/The-AI-Alliance/semiont/blob/main/LICENSE)
|
|
6
|
+
|
|
7
|
+
Pre-built Semiont backend server for npm consumption. This package contains the compiled backend application with Prisma schema and migrations.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g @semiont/backend
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This package is typically installed automatically by `semiont provision` when using the [Semiont CLI](https://www.npmjs.com/package/@semiont/cli).
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
The recommended way to run Semiont is through the CLI:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install -g @semiont/cli
|
|
23
|
+
semiont init my-project
|
|
24
|
+
cd my-project
|
|
25
|
+
semiont provision
|
|
26
|
+
semiont start
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
The CLI handles configuration, database setup, and process management.
|
|
30
|
+
|
|
31
|
+
## Direct Usage
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
semiont-backend
|
|
35
|
+
# or
|
|
36
|
+
node node_modules/@semiont/backend/dist/index.js
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Requires `DATABASE_URL` and other environment variables to be configured.
|
|
40
|
+
|
|
41
|
+
## What's Included
|
|
42
|
+
|
|
43
|
+
- `dist/` - Compiled backend application (Hono server)
|
|
44
|
+
- `prisma/` - Prisma schema and migrations
|
|
45
|
+
|
|
46
|
+
## Links
|
|
47
|
+
|
|
48
|
+
- [Semiont GitHub](https://github.com/The-AI-Alliance/semiont)
|
|
49
|
+
- [Semiont CLI](https://www.npmjs.com/package/@semiont/cli)
|
|
50
|
+
- [Documentation](https://github.com/The-AI-Alliance/semiont#readme)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semiont/backend",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.40",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Semiont backend server - pre-built for npm consumption",
|
|
6
6
|
"bin": {
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"@hono/node-server": "^1.17.1",
|
|
22
22
|
"@hono/swagger-ui": "^0.5.2",
|
|
23
23
|
"@prisma/client": "^6.13.0",
|
|
24
|
-
"@semiont/core": "^0.2.
|
|
25
|
-
"@semiont/event-sourcing": "^0.2.
|
|
26
|
-
"@semiont/graph": "^0.2.
|
|
27
|
-
"@semiont/inference": "^0.2.
|
|
28
|
-
"@semiont/jobs": "^0.2.
|
|
29
|
-
"@semiont/make-meaning": "^0.2.
|
|
24
|
+
"@semiont/core": "^0.2.40",
|
|
25
|
+
"@semiont/event-sourcing": "^0.2.40",
|
|
26
|
+
"@semiont/graph": "^0.2.40",
|
|
27
|
+
"@semiont/inference": "^0.2.40",
|
|
28
|
+
"@semiont/jobs": "^0.2.40",
|
|
29
|
+
"@semiont/make-meaning": "^0.2.40",
|
|
30
30
|
"ajv": "^8.17.1",
|
|
31
31
|
"ajv-formats": "^2.1.1",
|
|
32
32
|
"argon2": "^0.43.0",
|