Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maelvls/maelvls.github.io

Source for my personal webpage (https://maelvls.dev)
https://github.com/maelvls/maelvls.github.io

Last synced: 11 days ago
JSON representation

Source for my personal webpage (https://maelvls.dev)

Awesome Lists containing this project

README

        

# Personal website

[![Build and deploy to github pages](https://github.com/maelvls/maelvls.github.io/workflows/Build%20and%20deploy%20to%20github%20pages/badge.svg?branch=source)](https://github.com/maelvls/maelvls.github.io/actions?query=workflow%3A%22Build+and+deploy+to+github+pages%22)

Code is in the branch `source`, gp-pages are in `master`.

To synchronize my Hugo posts to :

```sh
go install github.com/maelvls/hudevto@latest
DEVTO_APIKEY=...
hudevto status
hudevto push
```

To create a new post:

```sh
hugo new -k bundle 2020/client-go-transitive-hell
```

The `-k` flag tells hugo to use `archetypes/bundle` ([see doc](https://gohugo.io/content-management/archetypes/#directory-based-archetypes)).

Locally serve:

```sh
hugo serve --buildDrafts --buildFuture
```