You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.MD
+16-9Lines changed: 16 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,30 +6,37 @@ These instructions will get you a copy of the RESTEasy website up and running on
6
6
7
7
### Installation
8
8
9
-
Follow these instructions from [github-pages](https://help.github.com/en/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll)
10
-
to start local server and test your change before submit
9
+
The site is built using [Roq](https://iamroq.com/) and [GitHub Pages](https://pages.github.com/). To build and run the site locally, all you need is a JDK and Maven:
10
+
11
+
```bash
12
+
$ mvn package quarkus:dev
13
+
```
14
+
15
+
The site will be available at [http://localhost:8080](http://localhost:8080).
11
16
12
17
## Writing blog
13
18
14
19
Add a blog entry:
15
-
- create blog entry under [_posts](https://github.com/jimma/resteasy-website/tree/master/_posts)
20
+
- create blog entry under [content/posts](https://github.com/resteasy/resteasy.dev/tree/master/content/posts)
16
21
and name the file with `yyyy-mm-dd-title.md'`
17
-
- add these layout and title settings before blog content in your blog entry file. There is an [example](https://github.com/jimma/resteasy-website/blob/master/_posts/2019-10-08-looking-to-the-future.md) showing what you need add in a blog file.
18
-
```
22
+
- add these layout and title settings before blog content in your blog entry file. Here is an [example](https://github.com/resteasy/resteasy.dev/blob/master/content/posts/2025-03-19-red-hat-ibm.md) showing what you need to add at the top of the file.
19
23
24
+
```
20
25
---
21
26
layout: post
22
27
title: "Blog Title"
23
28
subtitle: ""
24
-
date: 2019-10-30 08:07:00
29
+
date: 2019-10-30 08:07:00
25
30
author: "Java Robot"
26
31
---
32
+
27
33
Blog content line 1
28
34
Blog Content line 2
29
35
```
36
+
30
37
## Release
31
38
32
-
To announce a release you may need update these content:
39
+
To announce a release, you will need to update these files:
33
40
34
-
-Add news update in [index.md](https://github.com/jimma/resteasy-website/blob/master/index.md)
35
-
-Link the download in [downloads.html](https://github.com/jimma/resteasy-website/blob/master/downloads.html) and documentation in [docs.html](https://github.com/jimma/resteasy-website/blob/master/docs.html)
41
+
-Create a new blog post announcing the release. The post will automatically show up in [index.md](https://github.com/resteasy/resteasy.dev/blob/master/content/index.md)
42
+
-Add the release information to [data/releases.yaml](https://github.com/resteasy/resteasy.dev/blob/main/data/releases.yaml). An entry for the release will be automatically generated in [downloads.html](https://github.com/resteasy/resteasy.dev/blob/master/content/downloads.md) and [docs.html](https://github.com/resteasy/resteasy.dev/blob/master/content/docs.html)
0 commit comments