Files
epsf-miniwebsite/README.md

49 lines
628 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.x.x --baseURL http://192.168.x.x/ -D
```
## Deploy Preprod
```shell
rm -rf public & hugo -e preprod & rsync -av --delete public/ www-preprod-tutosportexpert@62.210.246.156:current
```