Installation
This guide walks you through setting up Agentic Signal
for development and running it as a web app in your browser.
If you want to use the packaged Windows app without development, see Run as Windows App.
Prerequisites
- Bun (for frontend and docs)
- Deno 2.0+ for the backend
- Ollama (optional, for local AI features)
1. Prerequisites Setup
-
Install Bun (Frontend & Docs Runtime)
Follow installation instructions from bun.sh -
Install Deno (Backend Runtime)
Follow installation instructions from deno.land (version 2.0+) -
Install Ollama (AI Models - Optional)
Download from ollama.ai
2. Clone and Setup Project
# Clone the repository
git clone https://github.com/code-forge-temple/agentic-signal.git
cd agentic-signal
# Install root dependencies
bun install
# Install client dependencies
cd client && bun install && cd ..
# Install docs dependencies
cd docs && bun install && cd ..