Skip to content
Luc Perkins edited this page Apr 5, 2017 · 6 revisions

Installation

Suggested that you have installed Crystal 0.7.2 or higher.

git clone https://github.com/Codcore/Amethyst.git

Or add it to Projectfile of your Crystal project

deps do
  github "Codcore/amethyst"
  github "spalger/crystal-mime"
end

Or add it to shard.yml of your Crystal project (if Crystal >= 0.10.0)

name: some_cool_project
version: 0.1.0

authors:
  - Your Name <[email protected]>

dependencies:
  crystal-on-rails:
    git: "https://github.com/codcore/amethyst.git"
    branch: "master"

# [snip]

You can play with examples of simple web-application written with Amethyst at examples directory:

crystal deps
crystal examples/simple_application.cr
Clone this wiki locally