They will be updated with new Amethyst release. Application examples for Amethyst web-framework
Create a directory from scratch:
mkdir my-amethyst
cd my-amethyst
Create a Projectfile
, in which add:
deps do
github "spalger/crystal-mime"
github "Codcore/amethyst"
github "Codcore/amethyst-examples"
end
and run:
crystal deps
to install packages.
Start server from the root of the project directory:
crystal libs/amethyst-examples/test.cr
Thus the server should be listening to localhost:8080
.
Feel free to add your own apps written in Amethyst
- Fork it ( https://github.com/[your-github-name]/examples/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
- Codcore codcore - creator, maintainer