thedroth-rocks/README.md
2023-10-26 09:44:01 +03:00

30 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Обновленный TheDroth.Rocks
## Подготовка
- Установить Docker
- Загрузить образ с [Hugo](https://hub.docker.com/r/klakegg/hugo):
```
docker pull klakegg/hugo
```
## Запуск
- Перейти в корневой каталог с проектом
- Выполнить запуск Hugo сервера
1) Для тестов:
```
docker run --rm -v $(pwd):/src -p 1313:1313 klakegg/hugo server
```
2) Для прода:
```
docker run -v $(pwd):/src -p 1313:1313 klakegg/hugo
```
## Мини FAQ
- ```config.yml``` - основной файл настройки сайта.
- Записи (странички) складываются в ```content/core``` и имеют ```.md``` формат.
- Если нужно, чтобы страницы не отображались на главном экране - расположите их в директории отличной от ```content/core```. Например, для блога можно использовать ```content/blog```.
- Картинки лежат в ```static```.
## Документация
- [Hugo Docker](https://hub.docker.com/r/klakegg/hugo)
- [Hugo Docs](https://gohugo.io/documentation/)
- [Template Repo](https://github.com/adityatelange/hugo-PaperMod)
- [Template miniFAQ](https://adityatelange.github.io/hugo-PaperMod/posts/papermod/papermod-faq/)