2020-08-27 23:34:57 +03:00
|
|
|
# Go website
|
2019-01-04 17:06:45 +03:00
|
|
|
|
2020-12-04 01:43:40 +03:00
|
|
|
[![Go Reference](https://pkg.go.dev/badge/golang.org/x/website.svg)](https://pkg.go.dev/golang.org/x/website)
|
|
|
|
|
2021-02-12 22:32:52 +03:00
|
|
|
This repo holds content and serving programs for the golang.org web site.
|
2019-01-04 17:06:45 +03:00
|
|
|
|
2021-02-12 22:32:52 +03:00
|
|
|
Content is in content/. Server code is in cmd/ and internal/.
|
2019-01-04 17:06:45 +03:00
|
|
|
|
2021-02-12 22:32:52 +03:00
|
|
|
To run the server to preview local content changes, use:
|
2020-08-27 23:34:57 +03:00
|
|
|
|
2021-02-12 22:32:52 +03:00
|
|
|
go run ./cmd/golangorg -a
|
2020-08-27 23:34:57 +03:00
|
|
|
|
2021-02-12 22:32:52 +03:00
|
|
|
The supporting programs cmd/admingolangorg and cmd/googlegolangorg
|
|
|
|
are the servers for admin.golang.org and google.golang.org.
|
|
|
|
(They do not use the content/ directory.)
|
2020-08-27 23:34:57 +03:00
|
|
|
|
2021-02-12 22:32:52 +03:00
|
|
|
Each command directory has its own README.md explaining deployment.
|
2019-01-04 17:06:45 +03:00
|
|
|
|
2019-06-26 12:03:53 +03:00
|
|
|
## JS/CSS Formatting
|
|
|
|
|
|
|
|
This repository uses [prettier](https://prettier.io/) to format JS and CSS files.
|
|
|
|
|
|
|
|
The version of `prettier` used is 1.18.2.
|
|
|
|
|
|
|
|
It is encouraged that all JS and CSS code be run through this before submitting
|
|
|
|
a change. However, it is not a strict requirement enforced by CI.
|
|
|
|
|
2019-01-04 17:06:45 +03:00
|
|
|
## Report Issues / Send Patches
|
|
|
|
|
|
|
|
This repository uses Gerrit for code changes. To learn how to submit changes to
|
|
|
|
this repository, see https://golang.org/doc/contribute.html.
|
|
|
|
|
2019-02-27 03:15:19 +03:00
|
|
|
The main issue tracker for the website repository is located at
|
2019-01-04 17:06:45 +03:00
|
|
|
https://github.com/golang/go/issues. Prefix your issue with "x/website:" in the
|
|
|
|
subject line, so it is easy to find.
|
2021-02-12 22:32:52 +03:00
|
|
|
|