Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kfatehi/blog

personal blog
https://github.com/kfatehi/blog

Last synced: 3 months ago
JSON representation

personal blog

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)