forked from jerlendds/osintbuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
71 lines (59 loc) · 2.11 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
PROJECT_NAME=osintbuddy
ENVIRONMENT=development
BASE_URL=http://localhost:8000
##########################################
# @todo switch to highlight as sentry falsely advertises support for python 3.11...
# https://github.com/getsentry/sentry-python/issues/1950
# Error reporting!
# Remove if you don't want your errors
# reported to the project maintainers :(
##########################################
# SENTRY_DSN=https://[email protected]/4505363615711232
##########################################
# Port configuration
##########################################
FRONTEND_PORT=3000
BACKEND_PORT=8000
REDIS_PORT=6379
MICROSERVICE_PORT=1323
POSTGRES_PORT=5432
ELASTIC_PORT=9200
SDB_REST_PORT=10000
CQL_PORT=9042
THRIFT_PORT=9160
INTERNODE_PORT=7000
INTERNODE_ONE_PORT=7001
JMX_PORT=7199
##########################################
# PostgreSQL configuration
##########################################
POSTGRES_IMAGE=postgres:14.2
POSTGRES_SERVER=db
POSTGRES_USER=postgres
POSTGRES_PASSWORD=password
POSTGRES_DB=app
PGDATA=/var/lib/postgresql/data/pgdata
##########################################
# Scylla,JanusGraph,Elastic configuration
##########################################
SCYLLADATA=/var/lib/scylla
JANUS_IMAGE=janusgraph/janusgraph:1.0.0-rc2
ELASTIC_IMAGE=elasticsearch:8.8.0
JANUSGRAPH_URL=ws://janus:8182
##########################################
# Worker configuration
##########################################
CELERY_BROKER_URL=redis://redis:6379/0
CELERY_BACKEND=redis://redis:6379/1
CELERY_ENABLE_UTC=true
FLOWER_BASIC_AUTH=admin:password
##########################################
# FastAPI configuration
##########################################
BACKEND_CORS_ORIGINS=["https://api.YOUR_WEBSITE.com","https://YOUR_WEBSITE.com","http://YOUR_WEBSITE.com","http://localhost:3000","http://localhost","http://local.host"]
# Run: `openssl rand -hex 32` and replace the below with your output
SECRET_KEY=d7c612d43c083f72f98a5ed6d3dc275516f0ac6ebdcc5fdb8c563a29cd114199
##########################################
# Development
##########################################
VENV_PATH=venv/bin