diff --git a/Makefile b/Makefile index 1d5dd3e..b64a28f 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ PYTHON?=$(VENV_DIR)/bin/python all: copy_settings virtualenv install create_database copy_settings: - cp $(PROJECT_DIR)/project/local_settings.py.sample $(PROJECT_DIR)/project/local_settings.py + cp $(PROJECT_DIR)/project/local_settings.py.skeleton $(PROJECT_DIR)/project/local_settings.py virtualenv: virtualenv -p python3 $(VENV_DIR) --no-site-packages diff --git a/README.md b/README.md index 08627d7..8e17381 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ pip install -r requirements.txt ``` Создаем локальные настройки ```bash -cp project/local_settings.py.sample project/local_settings.py +cp project/local_settings.py.skeleton project/local_settings.py ``` Накатываем миграции и заполняем базу данных