Warning
🚧 This project is under active development and not to be used for production.
A task scheduling system, demonstrating concurrency, distributed systems patterns, and modern Go practices.
Project currently being planned in this GitHub Project.
cp .env.example .env
# first time setup
make db/start
make db/migrate
make db/seed
# check it worked
psql postgres://chronos:chronos@localhost:{port}/chronos -c "SELECT id, name, task_type FROM tasks;"
# full reset back to clean seeded state anytime
make db/reset