Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/cjbarker/cjbarker.com
- Owner: cjbarker
- Created: 2016-07-02T22:49:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-29T15:14:03.000Z (6 months ago)
- Last Synced: 2024-05-30T05:17:34.516Z (6 months ago)
- Language: CSS
- Homepage: http://cjbarker.com
- Size: 60.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```