Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hiero-ledger/hiero-website
Sources of the official Hiero website
https://github.com/hiero-ledger/hiero-website
contribution hacktoberfest hiero open-source website
Last synced: 26 days ago
JSON representation
Sources of the official Hiero website
- Host: GitHub
- URL: https://github.com/hiero-ledger/hiero-website
- Owner: hiero-ledger
- License: mit
- Created: 2024-08-27T14:18:41.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-22T18:23:02.000Z (2 months ago)
- Last Synced: 2024-10-23T13:52:09.907Z (2 months ago)
- Topics: contribution, hacktoberfest, hiero, open-source, website
- Language: CSS
- Homepage: https://hiero.org
- Size: 945 KB
- Stars: 6
- Watchers: 13
- Forks: 6
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hiero Website
This repo contains the website of Hiero (https://hiero.org).
## Building the website
The project is based on [Hugo](https://gohugo.io/) and you need to [install Hugo](https://gohugo.io/installation/) to build the website along with [Node.js](https://nodejs.org/), [npm](https://www.npmjs.com/), [Tailwind CSS](https://tailwindcss.com/), and [PostCSS](https://postcss.org/)
To help ensure that tailwindcss and Hugo play nicely together, the tailwindcss integration was stitched together based on the following articles:
[Making Tailwind JIT work with Hugo](https://www.brycewray.com/posts/2021/11/making-tailwind-jit-work-hugo/)
[Making Tailwind JIT work with Hugo, the Version 3 edition](https://www.brycewray.com/posts/2022/03/making-tailwind-jit-work-hugo-version-3-edition/)## Install packages
```
npm i
```## Environments
### Dev
For development run the following command in terminal.
```
npm run start
```While the process is running the website can be reached at http://localhost:1313/.
### Production
For production ready css, run the following command in terminal.
```
npm run build
```