Fireback accelerates backend and mobile app development, offering powerful code generation tools and standardized architecture. With seamless backend integration and streamlined workflows, Fireback expedites the creation of robust and scalable apps.
Fireback comes with MSI intallers for Windows, Packages for mac, and Debian packages for ubuntu. Installers will register the binary in the PATH and are recommended way to install:
Gives you fireback assist, such as Module3 auto completion https://github.com/torabian/fireback/releases/latest/download/fireback-tools.vsix
You can install fireback using go install github.com/torabian/fireback/cmd/fireback@latest
This would install it from source, and should be available in go/bin
folder.
Sometimes, your go/bin
folder is not in your path, you need to add it. (Also check the next section)
You might need to add the go/bin to your path, for example mac or linux:
echo 'export PATH="$PATH:$HOME/go/bin"' >> ~/.bashrc && source ~/.bashrc
If your system is reporting that the fireback
command is missing, make sure you have followed the Go installation guide correctly. Normally, it means that the go/bin directory in your User's home directory is not in the PATH environment variable. You will also normally need to close and reopen any open command prompts so that changes to the environment made by the installer are reflected at the command prompt.