mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
b43f9ceca9
* 🐸restructure frontend stuff, include admin and future user panel in main repo, properly deduplicate bundles for css+js across uses
* rename bundled to dist, caught by gitignore
* re-include status.css for profile template
* default to localhost
* serve frontend panels
* add todo message for abstraction
* refactor oauth registration flow
* oauth restructure
* update footer template
* change panel routes
* remove superfluous css imports
* write bundle to disk from test server, use forked budo-express
* wrap all page content in container
for robustness with addons etc injection other elements in body
* update documentation, goreleaser, Dockerfile
* update template meta tags
* add AGPL-3.0+ license header everywhere
* only attach update listener on EventEmitter
* cleaner config for various frontend bundles
* fix bundler script paths
* Merge commit 'd191931932b9293ce1be44ed08a1e69b9fcc1e25'
* fix up dockerfile, goreleaser
* go mod tidy
* add uglifyify
* move status hide/show js to frontend bundle
* fix stylesheet color( func regressions
* update contributing docs for new build path
* update goreleaser + docker building
* resolve dependency paths properly
* update package name
* use api errorhandler
Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
165 lines
4.7 KiB
YAML
165 lines
4.7 KiB
YAML
# https://goreleaser.com
|
|
project_name: gotosocial
|
|
before:
|
|
# https://goreleaser.com/customization/hooks/
|
|
hooks:
|
|
# generate the swagger.yaml file using go-swagger and bundle it into the assets directory
|
|
- swagger generate spec -o web/assets/swagger.yaml --scan-models
|
|
- sed -i "s/REPLACE_ME/{{ incpatch .Version }}/" web/assets/swagger.yaml
|
|
# bundle web assets
|
|
- yarn install --cwd web/source
|
|
- scripts/bundle.sh
|
|
builds:
|
|
# https://goreleaser.com/customization/build/
|
|
-
|
|
main: ./cmd/gotosocial
|
|
binary: gotosocial
|
|
ldflags:
|
|
- -s
|
|
- -w
|
|
- -extldflags
|
|
- -static
|
|
- -X main.Version={{.Version}}
|
|
tags:
|
|
- netgo
|
|
- osusergo
|
|
- static_build
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
- freebsd
|
|
goarch:
|
|
- 386
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- 6
|
|
- 7
|
|
ignore:
|
|
# build freebsd only for amd64
|
|
- goos: freebsd
|
|
goarch: arm64
|
|
- goos: freebsd
|
|
goarch: arm
|
|
- goos: freebsd
|
|
goarch: 386
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
dockers:
|
|
# https://goreleaser.com/customization/docker/
|
|
-
|
|
use: buildx
|
|
goos: linux
|
|
goarch: amd64
|
|
image_templates:
|
|
- "superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-amd64"
|
|
- "superseriousbusiness/{{ .ProjectName }}:latest-amd64"
|
|
build_flag_templates:
|
|
- "--platform=linux/amd64"
|
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
|
- "--label=org.opencontainers.image.title={{.ProjectName}}"
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
|
extra_files:
|
|
- web
|
|
- go.mod
|
|
- go.sum
|
|
- cmd
|
|
- internal
|
|
-
|
|
use: buildx
|
|
goos: linux
|
|
goarch: arm64
|
|
image_templates:
|
|
- "superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-arm64v8"
|
|
- "superseriousbusiness/{{ .ProjectName }}:latest-arm64v8"
|
|
build_flag_templates:
|
|
- "--platform=linux/arm64/v8"
|
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
|
- "--label=org.opencontainers.image.title={{.ProjectName}}"
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
|
extra_files:
|
|
- web
|
|
- go.mod
|
|
- go.sum
|
|
- cmd
|
|
- internal
|
|
-
|
|
use: buildx
|
|
goos: linux
|
|
goarch: arm
|
|
goarm: 6
|
|
image_templates:
|
|
- "superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-armv6"
|
|
- "superseriousbusiness/{{ .ProjectName }}:latest-armv6"
|
|
build_flag_templates:
|
|
- "--platform=linux/arm/v6"
|
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
|
- "--label=org.opencontainers.image.title={{.ProjectName}}"
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
|
extra_files:
|
|
- web
|
|
- go.mod
|
|
- go.sum
|
|
- cmd
|
|
- internal
|
|
-
|
|
use: buildx
|
|
goos: linux
|
|
goarch: arm
|
|
goarm: 7
|
|
image_templates:
|
|
- "superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-armv7"
|
|
- "superseriousbusiness/{{ .ProjectName }}:latest-armv7"
|
|
build_flag_templates:
|
|
- "--platform=linux/arm/v7"
|
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
|
- "--label=org.opencontainers.image.title={{.ProjectName}}"
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
|
extra_files:
|
|
- web
|
|
- go.mod
|
|
- go.sum
|
|
- cmd
|
|
- internal
|
|
docker_manifests:
|
|
- name_template: superseriousbusiness/{{ .ProjectName }}:{{ .Version }}
|
|
image_templates:
|
|
- superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-amd64
|
|
- superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-arm64v8
|
|
- superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-armv6
|
|
- superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-armv7
|
|
- name_template: superseriousbusiness/{{ .ProjectName }}:latest
|
|
image_templates:
|
|
- superseriousbusiness/{{ .ProjectName }}:latest-amd64
|
|
- superseriousbusiness/{{ .ProjectName }}:latest-arm64v8
|
|
- superseriousbusiness/{{ .ProjectName }}:latest-armv6
|
|
- superseriousbusiness/{{ .ProjectName }}:latest-armv7
|
|
archives:
|
|
# https://goreleaser.com/customization/archive/
|
|
-
|
|
files:
|
|
# standard release files
|
|
- LICENSE
|
|
- README.md
|
|
- CHANGELOG*
|
|
# web assets
|
|
- web/assets
|
|
- web/template
|
|
# example config files
|
|
- example/config.yaml
|
|
- example/gotosocial.service
|
|
checksum:
|
|
# https://goreleaser.com/customization/checksum/
|
|
name_template: 'checksums.txt'
|
|
snapshot:
|
|
# https://goreleaser.com/customization/snapshots/
|
|
name_template: "{{ incpatch .Version }}-SNAPSHOT"
|
|
source:
|
|
# https://goreleaser.com/customization/source/
|
|
enabled: true
|