3.5 KiB
title, date, draft
| title | date | draft |
|---|---|---|
| Building/Contributing for developers | 2021-07-25T00:33:36+01:00 | false |
Code
I use 4 spaces for indentation. Go should ideally be formatted with goimports and/or gofmt. I don't use a formatter on typescript, so don't worry about that.
Code in Go should ideally use PascalCase for exported values, and camelCase for non-exported, JSON for transferring data should use snake_case, and Typescript should use camelCase. Forgive me for my many inconsistencies in this, and feel free to fix them if you want.
Functions in Go that need to access *appContext should be generally be receivers, except when the behaviour could be seen as somewhat independent from it (email.go is the best example, its behaviour is broadly independent from the main app except from a couple config values).
Compiling
The Makefile is more suited towards development than other build methods, and provides separate build stages to speed up compilation when only making changes to specific aspects of the project.
Prefix each of these with make DEBUG=on :
allwill download deps and build everything. The executable and data will be placed inbuild. This is only necessary the first time.npmwill download all node.js build-time dependencies.compilewill only compile go code into thebuild/jfa-goexecutable.typescriptwill compile typescript w/ sourcemaps intobuild/data/web/js.bundle-csswill bundle CSS and place it inbuild/data/web/css.inlinewill inline the css and javascript used in the single-file crash report webpage.
configurationwill generate theconfig-base.json(used to render settings in the web ui) andconfig-default.iniand put them inbuild/data.emailwill compile email mjml, and copy the text versions in tobuild/data.swagger: generates swagger documentation for the API.copywill copy iconography, html, language files and static data intobuild/data.
Environment variables
DEBUG=on/off: If on, compiles with type-checking for typescript, sourcemaps, non-minified css and no symbol stripping.INTERNAL=on/off: Whether or not to embed file assets into the binary itself, or store them separately beside the binary.UPDATER=on/off/docker: Enable/Disable the updater, or set a special update type (currently only docker, which disables self-updating the binary).TRAY=on/off: Enable/disable the tray icon, which lets you start/stop/autostart on login. For linux, requireslibappindicator3-devfor debian or the equivalent on other distributions.GOESBUILD=on: Use a locally installedesbuildbinary. NPM doesn't provide builds for all os/architectures, sonpx esbuildmight not work for you, so the binary is compiled/installed withgo get.GOBINARY=<path to go>: Alternative path to go executable. Useful for testing with unstable go releases.VERSION=v<semver>: Alternative verision number, useful to test update functionality.COMMIT=<short commit>: Self explanatory.LDFLAGS=<ldflags>: Passed togo build -ldflags.E2EE=on/off: Enable/disable end-to-end encryption support for Matrix, which is currently very broken. Must subsequently be enabled (with Advanced settings enabled) in Settings > Matrix.TAGS=<tags>: Passed togo build -tags.OS=<os>: Unrelated to GOOS, if set towindows,-H=windowsguiis passed to ldflags, which stops a windows terminal popping up when run.RACE=on/off: If on, compiles with the go race detector included.