diff --git a/README.md b/README.md index ef0f007..8a1d2b8 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ A (somewhat barebones) atproto app for creating custom sites without hosting! +> [!CAUTION] +> This software is super duper alpha and not tested thoroughly! Use at your own risk! + - Lexicons are located at [`./lexicons`](./lexicons/) - Server backend is located at [`./server`](./server/) - Upload CLI is located at [`./upload`](./upload/) @@ -11,13 +14,13 @@ A (somewhat barebones) atproto app for creating custom sites without hosting! ## How to: **View someones site?** -Head to `https://.atcities.dev/` or `https://.did-.atcities.dev/`. +> Head to `https://.atcities.dev/` or `https://.did-.atcities.dev/`. **Upload your own site?** -Use the upload cli. Installation guide below. +> Use the upload cli. Installation guide below. **Self host atcities.dev?** -Clone this repo and setup the `.env` file for `/server`, then \ +> Clone this repo and setup the `.env` file for `/server`, then run `deno run run` ### CLI installation guide. diff --git a/server/deno.json b/server/deno.json index 24e1c67..08b121b 100644 --- a/server/deno.json +++ b/server/deno.json @@ -1,6 +1,7 @@ { "tasks": { "dev": "deno run --watch --allow-net --allow-env --allow-sys --allow-read=/usr/bin/ldd,./blobs,./src --allow-write=./blobs --allow-ffi --env-file src/index.ts", + "run": "deno run --allow-net --allow-env --allow-sys --allow-read=/usr/bin/ldd,./blobs,./src --allow-write=./blobs --allow-ffi --env-file src/index.ts", "lexgen": "deno run --allow-env --allow-sys --allow-read=.. --allow-write=./src/lexicons --no-prompt @atcute/lex-cli generate -c ./lex.config.js && cat ./src/lexicons/index.ts | sed \"s/.js/.ts/\" > ./src/lexicons/index.ts", "dk": "deno run -A --node-modules-dir npm:drizzle-kit" },