This repository contains seed files that almost every repository of Flamego middleware module should have.
- Create an empty repository on GitHub.com.
- Download ZIP of this repository, unzip to a directory, then rename the directory to match the middleware name.
- Update the Go module name in the
go.modfile to match the middleware repository path, e.g.:-module github.com/flamego/seed +module github.com/flamego/bilibili
- Update the package name in the
main.goand rename the file to match the middleware name, e.g.:-package seed +package bilibili
- Update the
github.repositoryin the.github/workflows/lsif.ymlto match the middleware repository, e.g.:-github.repository == 'flamego/seed' +github.repository == 'flamego/bilibili'
- Update the
import_rootin the.deepsource.tomlto match the middleware repository, e.g.:-import_root = "github.com/flamego/seed" +import_root = "github.com/flamego/bilibili"
- Update the
README.mdto be about your middleware, a good example is flamego/template's README.
- Please file an issue or start a discussion on the flamego/flamego repository.
This project is under the MIT License. See the LICENSE file for the full license text.