update dev instructions #98

Merged
6543 merged 2 commits from pat-s/theme:update-dev-instructions into master 2021-09-12 17:08:33 +00:00

View File

@ -3,46 +3,38 @@
[![Build Status](https://drone.gitea.com/api/badges/gitea/theme/status.svg)](https://drone.gitea.com/gitea/theme)
[![Join the chat at https://img.shields.io/discord/322538954119184384.svg](https://img.shields.io/discord/322538954119184384.svg)](https://discord.gg/NsatcWJ)
This is a Hugo theme that gets used within all of our websites like our blog,
documentation and also the redirects. If you commit any changes to the `master`
branch it will trigger rebuilds of all the related websites.
This is a Hugo theme that gets used within all of our websites like our blog, documentation and also the redirects.
If you commit any changes to the `master` branch it will trigger rebuilds of all the related websites.
## Install
You need an existing [Hugo](https://github.com/spf13/hugo) website, than you can
just download our prebuilt [theme](https://dl.gitea.io/theme/master.tar.gz), put
it into your `themes/gitea` folder and enable the theme with the
`theme = "gitea"` option of your website.
You need an existing [Hugo](https://github.com/spf13/hugo) website, than you can just download our prebuilt [theme](https://dl.gitea.io/theme/master.tar.gz), put it into your `themes/gitea` folder and enable the theme with the `theme = "gitea"` option of your website.
Outdated
Review

We need new lines by ourselves.

We need new lines by ourselves.
Outdated
Review

What do you mean with "we need need lines"?

What do you mean with "we need need lines"?
Outdated
Review

I mean you have to add new line characters on the article.

I mean you have to add new line characters on the article.
Outdated
Review

? Sorry, I still don't understand what you mean.

? Sorry, I still don't understand what you mean.
Outdated
Review

I think he revers to (two space) at the end of the line to enforce line break in markdown

I think he revers to ` ` (two space) at the end of the line to enforce line break in markdown
Outdated
Review

Two spaces also have an effect even if there is a line break.
The "one sentence per line" thing is somewhat unrelated to this and simplifies reading and review purposes.

No strong opinion though, this should not become a long discussion :)

Two spaces also have an effect even if there is a line break. The "one sentence per line" thing is somewhat unrelated to this and simplifies reading and review purposes. No strong opinion though, this should not become a long discussion :)
## Development
We choose [npm](https://npmjs.org) to fetch our dependencies and
[gulp](https://gulpjs.com/) for the pipeline. We won't cover the installation of
nodejs or npm, for that you can find enough guides depending on your operating
system. First of all you have to install the required dependencies:
We choose [npm](https://npmjs.org) to fetch our dependencies and [gulp](https://gulpjs.com/) for the pipeline.
We won't cover the installation of nodejs or npm, for that you can find enough guides depending on your operating system.
First of all you have to install the required dependencies:
```
```sh
npm install
```
After you have successfully installed the required dependencies you should be
able to use these commands to just clean and build generated sources of the
theme:
If you want to do theme development we suggest to use the `watch` task we have defined to get the changes directly built after saving changes to a file:
```
npm run clean
npm run build
npm run release
```
If you want to do more development on the theme we suggest to use the `watch`
task we have defined to get the changes directly built after saving changes to
a file:
```
```sh
npm run watch
```
Whenever you make a change to `src/main.scss` and save the file, this will trigger a rebuild of `static/styles/main.css`.
To see a preview of your changes on the website, do the following:
1. Go to gitea.io
2. Open the developer tools
3. Click the "Sources" tab
4. Open the `gitea.io/styles/main.css` file
5. Paste the entire `main.css` file from your local `gitea/theme` repo where `npm run watch` is running on
When you are done with your changes just create a pull request, after merging
the pull request the theme will be published to our [download page](https://dl.gitea.io/theme) automatically.
@ -57,11 +49,10 @@ Fork -> Patch -> Push -> Pull Request
## License
This project is under the Apache-2.0 License. See the [LICENSE](LICENSE) file
for the full license text.
This project is under the Apache-2.0 License. See the [LICENSE](LICENSE) file for the full license text.
## Copyright
```
```none
Copyright (c) 2019 The Gitea Authors <https://gitea.io>
6543 marked this conversation as resolved Outdated
Outdated
Review
-sh
+none
```diff -sh +none ```
```