Skip to content

Commit

Permalink
DB
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-xx committed Nov 16, 2023
1 parent 0fa0b03 commit 92b38cd
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Backand: Django REST API
git clone [email protected]:sergey-xx/foodgram-project-react.git
```

## Локальный запуск проекта:
### Локальный запуск проекта:
- установить Docker,
- в корневой папке проекта выполнить:
```
Expand All @@ -47,7 +47,7 @@ docker container exec foodgram-project-react-backend-1 python manage.py import
- Админка: http://localhost:8021/admin/
- API: http://localhost:8021/api/

## Отдельный запуск Backend:
### Отдельный запуск Backend:
- Cоздать и активировать виртуальное окружение:

```
Expand Down Expand Up @@ -85,7 +85,7 @@ python3 manage.py migrate
```
python3 manage.py runserver
```
## Frontend и документация
### Frontend и документация
- Находясь в директории infra, выполнить команду:

```
Expand All @@ -98,7 +98,7 @@ docker compose up

- Установить Docker
- Установить Веб-сервер: Nginx
- Создать файл .env (см. образецenv.example)
- Создать файл .env (см. образец env.example)
- загрузить в ту же папку docker-compose.production.yml
- выполнить
```
Expand Down
26 changes: 13 additions & 13 deletions backend/foodgram/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,24 +81,24 @@
# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}

# DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.postgresql',
# 'NAME': os.getenv('POSTGRES_DB'),
# 'USER': os.getenv('POSTGRES_USER'),
# 'PASSWORD': os.getenv('POSTGRES_PASSWORD'),
# 'HOST': os.getenv('DB_HOST'),
# 'PORT': os.getenv('DB_PORT'),
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': BASE_DIR / 'db.sqlite3',
# }
# }

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': os.getenv('POSTGRES_DB'),
'USER': os.getenv('POSTGRES_USER'),
'PASSWORD': os.getenv('POSTGRES_PASSWORD'),
'HOST': os.getenv('DB_HOST'),
'PORT': os.getenv('DB_PORT'),
}
}

# Password validation
# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators

Expand Down

0 comments on commit 92b38cd

Please sign in to comment.