Skip to content

sandronister/fast-boilerplate-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fast Boilerplate Go

This is a boilerplate project to quickly start a Go project.

Installation

  1. Clone the repository:
    git clone https://github.com/your-username/fast-boilerplate-go.git
  2. Navigate to the project directory:
    cd fast-boilerplate-go
  3. Install dependencies:
    go mod tidy

Usage

To run the project, use the command:

go run main.go <folder-name> <package-name>

Build

To compile the project, use the command:

go build -o fast-go

This will generate an executable named fast-go in the current directory.

Usage after compilation

To use the project after compilation, run the generated binary:

./fast-go <folder-name> <package-name>

Contribution

  1. Fork the project.
  2. Create a new branch:
    git checkout -b my-new-feature
  3. Make your changes and commit:
    git commit -m 'Add new feature'
  4. Push to the original branch:
    git push origin my-new-feature
  5. Open a Pull Request.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Releases

No releases published

Packages

No packages published

Languages