Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kfatehi/blog
personal blog
https://github.com/kfatehi/blog
Last synced: 3 months ago
JSON representation
personal blog
- Host: GitHub
- URL: https://github.com/kfatehi/blog
- Owner: kfatehi
- Created: 2013-05-12T01:17:13.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-08-04T13:49:16.000Z (6 months ago)
- Last Synced: 2024-10-06T16:41:13.627Z (4 months ago)
- Language: CSS
- Size: 21.1 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Quick Start
### Create a new post
``` bash
docker-compose run --rm hexo new "My New Post"
```### Run server
``` bash
docker-compose run -p 4000:4000 --rm hexo server
```
Start the server## Quick Start
### Create a new post
``` bash
$ hexo new "My New Post"
```More info: [Writing](https://hexo.io/docs/writing.html)
### Run server
``` bash
$ hexo server
```More info: [Server](https://hexo.io/docs/server.html)
### Generate static files
``` bash
$ hexo generate
```More info: [Generating](https://hexo.io/docs/generating.html)
### Deploy to remote sites
``` bash
$ hexo deploy
```More info: [Deployment](https://hexo.io/docs/deployment.html)