aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/installation/from-source.en-us.md
Commit message (Collapse)AuthorAgeFilesLines
* Remove docs sub folder since docs has been moved to ↵Lunny Xiao2024-07-101-262/+0
| | | | https://gitea.com/gitea/docs (#31536)
* Rework spellchecking, add `lint-spell` (#29106)silverwind2024-02-091-7/+1
| | | | | | | | | | | - Use maintained fork https://github.com/golangci/misspell - Rename `mispell-check` to `lint-spell`, add `lint-spell-fix` - Run `lint-spell` in separate actions step - Lint more files, fix discovered issues - Remove inaccurate and outdated info in docs (we do not need GOPATH for tools anymore) Maybe later we can add more spellchecking tools, but I have not found any good ones yet.
* Update golang links to use https (#28980)Mike Cifelli2024-01-301-4/+4
| | | | | | | Many of the golang links point to the old site and don't use https. This pull request updates these outdated links to https://go.dev . https://github.com/go-gitea/gitea/issues/28979
* Enable production source maps for index.js, fix CSS sourcemaps (#27291)silverwind2023-09-261-2/+8
| | | | | | | | | | | Previously, the production build never output sourcemaps. Now we emit one file for `index.js` because it is the most likely one where we need to be able to better debug reported issues like https://github.com/go-gitea/gitea/issues/27213. This will currently increase the binary size of gitea by around 700kB which is what the gzipped source map file has. Also, I fixed the CSS sourcemap generation which was broken since the introduction of lightningcss.
* Docusaurus-ify (#26051)John Olheiser2023-07-261-0/+262
This PR cleans up the docs in a way to make them simpler to ingest by our [docs repo](https://gitea.com/gitea/gitea-docusaurus). 1. It includes all of the sed invocations our ingestion did, removing the need to do it at build time. 2. It replaces the shortcode variable replacement method with `@variable@` style, simply for easier sed invocations when required. 3. It removes unused files and moves the docs up a level as cleanup. --------- Signed-off-by: jolheiser <john.olheiser@gmail.com>