Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theobrigitte/homepage
https://github.com/theobrigitte/homepage
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/theobrigitte/homepage
- Owner: TheoBrigitte
- Created: 2024-07-22T17:33:55.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-16T21:48:09.000Z (3 months ago)
- Last Synced: 2024-10-10T19:39:38.899Z (28 days ago)
- Language: HTML
- Size: 1.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# homepage
## Requirements
* Hugo: https://gohugo.io/installation/
## Quick Start
```
git clone https://github.com/TheoBrigitte/homepage.git
cd homepage
hugo server --buildDrafts
```## Develop
Run hugo in server mode and start editing the files.
```
hugo server --buildDrafts --cleanDestinationDir
```## Build
Build the website in the `public` directory.
```
hugo --cleanDestinationDir --destination public
```It can then easily be deployed with rsync for instance
```
rsync -avP --delete public/ destination/
```