This is an example Go application demonstrating the usage of embedding assets (such as templates, static files, etc.) into the binary using Go's embed package.
- Embedding of assets into the binary.
- Minimalistic setup with commands to build and run the application.
- Go installed on your system. You can download it from here.
-
Clone this repository:
git clone $THIS_REPO -
Navigate to the project directory:
cd $REPO
-
Build the application:
make build-app
-
Using the this command will remove the old database and start a new one, already seeded:
make seed
-
Run the application:
./bin/app
This project is licensed under the MIT License - see the LICENSE file for details.