# CLI

- [Core](/eucalypt/cli/core.md): Core CLI tasks for the micro-framework.
- [Init](/eucalypt/cli/core/init.md): Initialize a new application.
- [Launch](/eucalypt/cli/core/launch.md): Launches your application.
- [Console](/eucalypt/cli/core/console.md): Launches an interactive console with all application files loaded.
- [Test](/eucalypt/cli/core/test.md): Runs all application specs.
- [Version](/eucalypt/cli/core/version.md): Display the currently installed Eucalypt gem version.
- [Rake](/eucalypt/cli/core/rake.md): Run a rake task
- [Help (-H)](/eucalypt/cli/core/help.md): Display additional information about other commands and their arguments and options.
- [Generate](/eucalypt/cli/generate.md): Generate individual MVC files or scaffolds.
- [Controller](/eucalypt/cli/generate/controller.md): Generates a controller.
- [Helper](/eucalypt/cli/generate/helper.md): Generates a helper.
- [Model](/eucalypt/cli/generate/model.md): Generates a model.
- [Scaffold](/eucalypt/cli/generate/scaffold.md): Generates a scaffold.
- [Destroy](/eucalypt/cli/destroy.md): Destroy individual MVC files or scaffolds.
- [Controller](/eucalypt/cli/destroy/controller.md): Destroys a controller.
- [Helper](/eucalypt/cli/destroy/helper.md): Destroys a helper.
- [Model](/eucalypt/cli/destroy/model.md): Destroys a model.
- [Scaffold](/eucalypt/cli/destroy/scaffold.md): Destroys a scaffold.
- [Blog](/eucalypt/cli/blog.md): Manage static blog environment.
- [Setup](/eucalypt/cli/blog/setup.md): Sets up the blog environment.
- [Article](/eucalypt/cli/blog/article.md): Create, edit and destroy blog articles.
- [List](/eucalypt/cli/blog/article/list.md): Display the metadata of blog articles.
- [Generate](/eucalypt/cli/blog/article/generate.md): Generates a new blog article.
- [Destroy](/eucalypt/cli/blog/article/destroy.md): Destroys a blog article.
- [Edit](/eucalypt/cli/blog/article/edit.md): Edit the URL title or datetime of a blog article.
- [Urltitle](/eucalypt/cli/blog/article/edit/urltitle.md): Edit the URL title of a blog article.
- [Datetime](/eucalypt/cli/blog/article/edit/datetime.md): Edit the datetime of a blog article.
- [Migration](/eucalypt/cli/migration.md): Generate ActiveRecord migrations.
- [Blank](/eucalypt/cli/migration/blank.md): Creates a blank migration.
- [Types](/eucalypt/cli/migration/types.md): Display permitted column types.
- [Create](/eucalypt/cli/migration/create.md): Create tables.
- [Table](/eucalypt/cli/migration/create/table.md): Creates a table.
- [Add](/eucalypt/cli/migration/add.md): Add indexes and columns to a table.
- [Index](/eucalypt/cli/migration/add/index.md): Adds an index to a table.
- [Column](/eucalypt/cli/migration/add/column.md): Adds a column to a table.
- [Drop](/eucalypt/cli/migration/drop.md): Drop tables, columns and indexes.
- [Table](/eucalypt/cli/migration/drop/table.md): Removes a table.
- [Index](/eucalypt/cli/migration/drop/index.md): Removes an index from a table.
- [Column](/eucalypt/cli/migration/drop/column.md): Removes a column from a table.
- [Rename](/eucalypt/cli/migration/rename.md): Rename tables, columns and indexes.
- [Table](/eucalypt/cli/migration/rename/table.md): Renames a table.
- [Index](/eucalypt/cli/migration/rename/index.md): Renames an index.
- [Column](/eucalypt/cli/migration/rename/column.md): Renames a column.
- [Change](/eucalypt/cli/migration/change.md): Change column definitions.
- [Column](/eucalypt/cli/migration/change/column.md): Changes a column's type definition.
