Skip to content
/ skeleton Public template

Template repo to get up and running quickly with the Athena Framework

License

Notifications You must be signed in to change notification settings

athena-framework/skeleton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

beffaec · Jan 26, 2025

History

37 Commits
May 10, 2024
Oct 7, 2023
Jan 26, 2025
Feb 21, 2023
Feb 21, 2023
Feb 21, 2023
Feb 22, 2024
Jan 26, 2025

Repository files navigation

skeleton

Template repository to get up and running quickly with the Athena Framework which includes:

  • A flexible directory structure
  • Pre-configured binary entrypoints for HTTP and CLI contexts
  • Development code-quality/testing dependencies + CI
  • Minimal runnable Athena Framework application

Getting Started

  1. Generate a new repository using this template.
  2. Run shards install
  3. Rename MyApp module within src/main.cr and src/controllers/example_controller.cr to your desired name
  4. Rename skeleton shard name within shard.yml to your desired name
  5. Update ./LICENSE with your desired name/email
  6. Consider pinning crate-ci/typos in .github/workflows/ci.yml to a specific version to avoid random failures as new dictionaries are published
  7. Start creating your application!

Entrypoints

The template repository includes build targets for both the HTTP and CLI contexts. Or in other words, ./bin/console and ./bin/server binaries are created by running shards build. This makes it easy to deploy both parts of the application independently from one another.

TIP: The shards run command may be used during development to interact with each target. E.g. shards run server to start the server and shards run console -- debug:router to execute console commands.