Releases: jwoertink/fez
v0.11.1
v0.11.0
v0.10.3
Thanks to @juanmougan for fixing an issue where ICR would fail to install since moving repo locations.
v0.10.2
Spring Cleaning
In this version I basically just removed kemalyst, but not because I don't love that project. Those guys are making some serious headway in their project, and have built their own generator. If you're looking to generate a kemalyst app, you can now use KGen. 🎉
I have also removed the crustache dependency. I think that may have been the cause of the homebrew issues. Also, thanks to @drujensen for the help and support of fez, I have left the structure he set in place which will allow me to start adding more templates for kemal generation!
As always, if you find any issues, let me know!
TL;DR
- No longer generating kemalyst app
- Removed crustache dependency
- Removed framework
-f
option - Fixed bug in ECR template generation
Refactoring build process
When running make
, it will now clean all the old cache files and folders, then reinstall shards before building the final release. This release doesn't change any work flow, but hopefully fixes the home brew install method.
Introducing Frameworks
Thanks to @drujensen we can now start adding more to fez to make it more powerful. By default, and at the heart, Fez will remain a kemal application generator. However, if you're looking to generate a "rails-like" MVC app, you can do that with fez now!
Fez now supports Kemalyst with the --framework
option.
Use fez to generate the following types of apps:
- Kemal with slang views (default)
- Kemal with ECR views
- Kemal as a JSON API (no views)
- Kemalyst with ECR (full MVC framework)
If you run in to any issues, be sure to submit an issue!
Now with API building
This release adds in the ability to generate an API only kemal app. If your app doesn't need views, css, or javascript, then you can generate a slimmed down structure. This generated API will be JSON based by default, and include versioning.
v0.7.0
Now with deployment!
This update adds in some deployment tasks using Capistrano. For now it's a basic setup meant for deploying from a github repo to a VPS. You have the ability to alter it however you need though.
If you find any issues with how the default capistrano is setup, please submit an issue or PR.