22 lines
502 B
Markdown
22 lines
502 B
Markdown
```shell
|
|
|
|
$ git clone https://git.hackanooga.com/mikeconrad/hackanooga.com.git
|
|
$ cd hackanooga.com
|
|
$ git checkout master
|
|
$ git submodule init
|
|
$ git submodule update
|
|
$ hugo server --disableFastRender
|
|
```
|
|
|
|
|
|
## Deployment
|
|
I created a super simple shell script to automate deployment. It requires the wrangler cli to be installed:
|
|
```shell
|
|
$ npm i -g wrangler
|
|
```
|
|
|
|
Once you have wrangler installed, simply run:
|
|
```shell
|
|
$ bash deploy.sh
|
|
```
|
|
The first time, you will be asked to authenticate to Cloudflare. |