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
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ We’ve put together a comprehensive list of the projects hosted on GitHub in wh
6
6
7
7
To add or modify projects to the list on [https://redhatofficial.github.io](https://redhatofficial.github.io), either submit a pull request or create an issue in the [repo](https://github.com/RedHatOfficial/RedHatOfficial.github.io). Upon review, the site maintainers will merge the PR or change the content as requested. No direct merges will be accepted.
8
8
9
-
All projects are stored in the `/app/data` directory in the `projects.json` file within the dev branch of this repo. Try to add your project alphabetically (just to make the file easier to search) and create a new object in the JSON that has:
9
+
All projects are stored in the `/data` directory in the `projects.json` file within the dev branch of this repo. Try to add your project alphabetically (just to make the file easier to search) and create a new object in the JSON that has:
10
10
11
11
```js
12
12
{
@@ -61,21 +61,25 @@ cd RedHatOfficial.github.io
61
61
62
62
## Building and running locally
63
63
64
-
To build and run this project in your local dev environment, follow the instructions below. Be sure you have [Node.js](https://nodejs.org/) installed before you start.
64
+
To build and run this project in your local dev environment, first install [Rust](https://www.rust-lang.org/tools/install) and [Zola](https://www.getzola.org/documentation/getting-started/installation/). Then, run
65
65
66
-
1. Install dependencies: `npm install`
67
-
2. Run the local development server: `npm start`
66
+
```bash
67
+
cd site
68
+
zola serve
69
+
```
68
70
69
-
The web page will start running on [localhost:8080](http://localhost:8080/).
71
+
Go to the URL for the webserver (likely `localhost:1111`) to explore the site.
70
72
71
73
## Built with
72
74
73
-
This site was created using [Angular](https://angularjs.org/), [webpack](https://webpack.js.org/), [NPM](https://www.npmjs.com/), [Babel](https://babeljs.io/), [Sass](https://sass-lang.com/), and [Netlify](https://www.netlify.com/).
75
+
This project is build and run using [Zola](https://www.getzola.org/), a Rust-based static site generator.
76
+
77
+
Under the hood, Zola uses [Tera](https://keats.github.io/tera/) for templating.
74
78
75
79
## Licensing
76
80
77
81
-[CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) for the displayed page and primary license for this repository
78
-
-[MIT](https://opensource.org/licenses/MIT) for the JavaScript
82
+
-[MIT](https://opensource.org/licenses/MIT) for the small bits of Javascript within the HTML files
79
83
-[CC0](https://creativecommons.org/share-your-work/public-domain/cc0/) for the HTML and CSS
80
84
81
85
Red Hat trademarks are not subject to the above license grants.
0 commit comments