diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..337b442 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +indent_style = space +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7d598e3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# OS +.DS_Store +Thumbs.db + +# IDE +.idea/ +.vscode/ + +# Logs +*.log + +# Env +.env +.env.local diff --git a/README.md b/README.md index 1a2a7b0..f5d7127 100644 --- a/README.md +++ b/README.md @@ -1 +1,11 @@ -# frontend-github-deploy \ No newline at end of file +# frontend-github-deploy + +### Шаг 0 - настроить новый проект + +1) Создать проект "resume" у себя на github +(или свое корректное название, в котором есть слово "resume") + +2) Добавить в него базовые файлы и конфиги: +- `README.md` (указать название или выбрать README при создании проекта) +- `.gitignore` (указать базовые настройки, как в проекте-образце) +- `.edigorconfig` (указать базовые настройки, как в проекте-образце)