This commit is contained in:
tree 2023-07-14 08:51:11 +00:00
rodič 79384e36d0
revize 1bbc2aa9f4
2 změnil soubory, kde provedl 10 přidání a 3 odebrání

Zobrazit soubor

@ -6,9 +6,10 @@ This is a monorepo containing the backend and frontend of ATScan.
The current version is hosted at [atscan.net](https://atscan.net). You can follow us on Bluesky as [@atscan.net](https://bsky.app/profile/did:plc:ft3tl5dxjn4psdk6asenqn3r).
## Our libraries
## Our software
- [broadsky](https://github.com/atscan/broadsky) - Bridge Streaming Wire Protocol (v0) to NATS and other protocols
- [broadsky](https://github.com/atscan/broadsky) (Go) - Bridge Streaming Wire Protocol (v0) to NATS and other protocols
- [blobd](https://github.com/atscan/blobd) (Go) - AT Protocol Blob-serving HTTP Server in Go
## Technology stack

Zobrazit soubor

@ -58,11 +58,17 @@ module.exports = {
env: {
PORT: 6678
}
}, {
}, /*{
name: "atscan-api-blob",
script: "./backend/api-blob.js",
interpreter: "deno",
interpreterArgs: "run --unstable --allow-net --allow-read --allow-write --allow-env --allow-sys",
},*/
{
name: "atscan-blobd",
script: "true",
interpreter: "blobd",
interpreterArgs: "-d /corn/atscan-db -p 6680"
}, {
name: "atscan-worker",
script: "./backend/repo-worker.js",