-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
25 lines (21 loc) · 922 Bytes
/
.env
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
MODE=DEVELOPMENT # Change to PRODUCTION when deploying
DEBUG=True
GPU_ENABLED=False
LOG_LEVEL=DEBUG
TEMP_DIR=/path/to/temp
OUTPUT_DIR=/path/to/output
# Set up connections to database
DATABASE_TYPE=sqlite # Options: postgressql, mysql, mongodb, sqlite
# Comment / Uncomment based on your database
#DATABASE_URL=mongodb://username:password@localhost:27017/mydatabase
#DATABASE_URL=postgres://user:password@localhost/mydatabase
#DATABASE_URL=mysql://username:password@localhost/dbname
DATABASE_URL=sqlite:///path_to_db/my_database.db
# Set up connection to the quantum computer, encryption and Qiskit backend
QUANTUM_COMPUTER_URL=http://localhost:8080
QUANTUM_PROVIDER=IMBQ # Options: IBMQ, GOOGLE, LOCAL
QISKIT_BACKEND=ibmq_qasm_simulator
IBMQ_API_TOKEN=your_ibm_api_token_here
# Quantum Encryption
ENCRYPTION_ALGORITHM=kyber
ENCRYPTION_KEY_FILE=/path/to/encryption_key_file