Quick Start with Kemal
masterTo get started with Kemal, ensure you have Crystal installed. Follow these steps to create a new application:
- Initialize a new Crystal app:
crystal init app my-kemal-app cd my-kemal-app - Add
kemalto yourshard.ymldependencies:dependencies: kemal: github: kemalcr/kemal - Install dependencies and run the application:
shards install crystal run src/my_kemal_app.cr