Simple full-stack Nostr chat app
Development requires a local Valkey instance. Use the provided Docker container defined in valkey.Dockerfile.
To start the Valkey container, from the project root, run:
docker build -f containers/valkey.Dockerfile -t grchat-valkey .
docker run -d -t -i -p 6379:6379 grchat-valkeyStart the project dev server with:
deno task devRun the full stack as it would appear in production by using Docker Compose. Run the following from the project root:
cd containers && docker compose up -d && cd ..