This is a sample application that shows how to build a crud application. This also provides an example of securing specific pages and leveraging the session to maintain authorization.
Create a mysql database called blog
and configure the config/database.yml
to provide the credentials to access the table.
Then:
shards update
kgen migrate up
To run the demo:
crystal build src/blog.cr
./blog
username: admin password: password
This will start an instance of mysql, migrate the database, run the specs, and launch the site at http://localhost:3000
docker-compose up
Note: The Docker image is compatible with Heroku.
- Fork it ( https://github.com/[your-github-name]/your_project/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
- [drujensen] dru.jensen - creator, maintainer