Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cjbarker/cjbarker.com

Simple Golang web server for serving up personal website via markdown.
https://github.com/cjbarker/cjbarker.com

Last synced: about 1 month ago
JSON representation

Simple Golang web server for serving up personal website via markdown.

Awesome Lists containing this project

README

        

# cjbarker.com

Personal website via customize [hugo](https://gohugo.io/getting-started/usage/) theme 'cjb' for generating and serving http://cjbarker.com

## Drafting Blog Article
```
hugo new blog/my-new-post.md
```

## Testing
```bash
hugo server --bind 0.0.0.0 --port 8000 --buildFuture --log --logFile port800log
hugo server --bind 0.0.0.0 --port 8000 --buildFuture --verbose
```

## Deployment
Build the static site via Hugo, which will create directory 'public' for copying contents to hosting endpoint.

```bash
hugo
./deploy.sh
```