Files
insta/.env
Beyhan Oğur 2be3a313ad first commit
2026-04-26 22:26:46 +03:00

43 lines
1.2 KiB
Bash
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.
# Django Settings
DEBUG=1
SECRET_KEY=insta-django-Uq6bv1c4jcSjv50hA6sj6C8d18G3uHMowQz1EL5ljVvISPm1k8kqxZ1iMCCOy2ZPZCY23i
DJANGO_ALLOWED_HOSTS=localhost,127.0.0.1,api.denizogur.com.tr,localhost:8000
CELERY_BROKER_URL=redis://default:gg7678290@10.80.80.70:6379/5
# Site URL - Production ve Development için buradan değiştirin
# SITE_URL=https://api.denizogur.com.tr
SITE_URL=http://localhost:8000 # Development için bu satırı aktif edin
# .env
USERNAME_SUFFIX_MIN=2
USERNAME_SUFFIX_MAX=999
# Database Settings (Mevcut PostgreSQL sunucunuz)
USE_POSTGRES=False
POSTGRES_DB=shop
POSTGRES_USER=cloud
POSTGRES_PASSWORD=gg7678290
POSTGRES_HOST=10.80.80.70
POSTGRES_PORT=5432
# Social Auth (Google)
SOCIAL_AUTH_GOOGLE_OAUTH2_KEY=your-google-oauth2-key
SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET=your-google-oauth2-secret
# Social Auth (GitHub)
SOCIAL_AUTH_GITHUB_KEY=your-github-key
SOCIAL_AUTH_GITHUB_SECRET=your-github-secret
# Email Settings (Optional)
EMAIL_BACKEND='django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST=212.64.215.243
EMAIL_PORT=1025
EMAIL_HOST_USER=''
EMAIL_HOST_PASSWORD=''
EMAIL_USE_TLS=False
EMAIL_USE_SSL=False
DEFAULT_FROM_EMAIL='noreply@localhost'
CELERY_BROKER_URL='redis://default:gg7678290@10.80.80.70:6379/3'
CELERY_RESULT_BACKEND='django-db'