49 lines
603 B
Markdown
49 lines
603 B
Markdown
# epsf-miniwebsite
|
|
|
|
Launch web site for EPSF future tutosportexpert.com
|
|
|
|
|
|
## Install Hugo
|
|
|
|
### Linux
|
|
|
|
```shell
|
|
$ sudo apt install hugo
|
|
```
|
|
|
|
### Windows
|
|
|
|
For other intsallation go [here](https://gohugo.io/getting-started/quick-start/)
|
|
|
|
|
|
### Check version
|
|
|
|
```shell
|
|
$ hugo version
|
|
|
|
> hugo v0.140.2+extended+withdeploy ...
|
|
```
|
|
|
|
## Run Locally
|
|
|
|
127.0.01 uniquely
|
|
```shell
|
|
|
|
hugo server
|
|
```
|
|
|
|
local network
|
|
```shell
|
|
|
|
hugo server --bind 192.168.1.72 --baseURL http://192.168.1.72/ -D
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Deploy Preprod
|
|
```shell
|
|
hugo & rsync -av --delete public/ www-preprod-tutosportexpert@62.210.246.156:current
|
|
``` |