An agentic blog editor.
Navigate to the frontend directory and install dependencies:
cd frontend
bun install
Start the development server:
bun run dev
Build for production:
bun run build
The Makefile commands are for the backend only:
Run build make command with tests:
make all
Build the application:
make build
Run the application:
make run
Live reload the application:
make watch
Run the test suite:
make test
Clean up binary from the last build:
make clean