* minor docker fixes * eslint config changes * dockerfile changes to backend and frontend * oauth enabled env flag * sentry enabled env flag * build: get alternatives for environment variables and static file storage * build: automatically generate random secret key if not provided * build: update docker compose for next url env add channels to requirements for asgi server and save files in local machine for docker environment * build: update nginx conf for backend base url update backend dockerfile to make way for static file uploads * feat: create a default user with given values else default values * chore: update docker python version and other dependency version in docker * build: update local settings file to run it in docker * fix: update script to run in default production setting * fix: env variable changes and env setup shell script added * Added Single Dockerfile to run the Entire plane application * docs build fixes --------- Co-authored-by: Narayana <narayana.vadapalli1996@gmail.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
79 lines
1.7 KiB
Python
79 lines
1.7 KiB
Python
"""Development settings and globals."""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import dj_database_url
|
|
import sentry_sdk
|
|
from sentry_sdk.integrations.django import DjangoIntegration
|
|
from sentry_sdk.integrations.redis import RedisIntegration
|
|
|
|
|
|
from .common import * # noqa
|
|
|
|
DEBUG = True
|
|
|
|
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
|
|
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.postgresql_psycopg2",
|
|
"NAME": "plane",
|
|
"USER": "",
|
|
"PASSWORD": "",
|
|
"HOST": "",
|
|
}
|
|
}
|
|
|
|
DOCKERIZED = os.environ.get("DOCKERIZED", False)
|
|
|
|
if DOCKERIZED:
|
|
DATABASES["default"] = dj_database_url.config()
|
|
|
|
CACHES = {
|
|
"default": {
|
|
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
|
|
}
|
|
}
|
|
|
|
INSTALLED_APPS += ("debug_toolbar",)
|
|
|
|
MIDDLEWARE += ("debug_toolbar.middleware.DebugToolbarMiddleware",)
|
|
|
|
DEBUG_TOOLBAR_PATCH_SETTINGS = False
|
|
|
|
INTERNAL_IPS = ("127.0.0.1",)
|
|
|
|
CORS_ORIGIN_ALLOW_ALL = True
|
|
|
|
if os.environ.get("SENTRY_DSN", False):
|
|
sentry_sdk.init(
|
|
dsn=os.environ.get("SENTRY_DSN"),
|
|
integrations=[DjangoIntegration(), RedisIntegration()],
|
|
# If you wish to associate users to errors (assuming you are using
|
|
# django.contrib.auth) you may enable sending PII data.
|
|
send_default_pii=True,
|
|
environment="local",
|
|
traces_sample_rate=0.7,
|
|
)
|
|
|
|
REDIS_HOST = "localhost"
|
|
REDIS_PORT = 6379
|
|
REDIS_URL = False
|
|
|
|
RQ_QUEUES = {
|
|
"default": {
|
|
"HOST": "localhost",
|
|
"PORT": 6379,
|
|
"DB": 0,
|
|
"DEFAULT_TIMEOUT": 360,
|
|
},
|
|
}
|
|
|
|
MEDIA_URL = "/uploads/"
|
|
MEDIA_ROOT = os.path.join(BASE_DIR, "uploads")
|
|
|
|
if DOCKERIZED:
|
|
REDIS_URL = os.environ.get("REDIS_URL")
|
|
|
|
WEB_URL = os.environ.get("WEB_URL", "localhost:3000")
|