-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Gary Norman edited this page Oct 7, 2025
·
1 revision
This guide will help you set up and run Codex on your local machine.
- Go 1.22 or higher
- SQLite3
- (Optional) Docker for containerized deployment
git clone https://github.com/gary-norman/forum.git
cd forumThe project includes an interactive menu system:
make menuThis displays options for:
- build - Build the application
- run - Run the application
- build-run - Build and run in sequence
- Docker - Docker management
- Scripts - Script management
# Build
make build
# Run
make run
# Build and run
make build-run# Build
go build -o bin/codex github.com/gary-norman/forum/cmd/server
# Run
./bin/codexbin/codex migratebin/codex seedmake configuremake build-imagemake run-containerOnce running, access the forum at:
http://localhost:8888
- Read the Architecture Overview
- Check the Development Guide
- Explore the Database Schema