Skip to content

Releases: gofr-dev/gofr-cli

v0.1.1

09 Sep 11:53
19bbb03
Compare
Choose a tag to compare

Release v0.1.1

Bug Fixes

  • Fixed the issue with the migration name containing _ causing issues with the all.go and migration name.

Full Changelog: v0.1.0...v0.1.1

v0.1.0

26 Aug 11:40
807e48c
Compare
Choose a tag to compare

Release v0.1.0

👀 Overview

This is the initial release of our CLI tool, built on top of the GoFr. This version provides basic functionality for:

  • init: Generating a project template with essential files and structures.
  • migrate: Creating a template for database migrations.
  • version: Displaying the current version of the CLI tool.

✨ Features

  • Project template
    Generation of a basic project structure with hello endpoint built on gofr, including mod files and main package.
    Example: init -name=hello-world

  • Migrations template
    Generation of migrations directory with given migration file.
    Example: migrate create -name=create_table_users