generated from 0xTheProDev/fastapi-clean-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.test
37 lines (32 loc) · 857 Bytes
/
.env.test
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
# Application Settings
APP_NAME="Friday API (Test)"
API_VERSION="1.0.0"
ENV_STATE="test"
# Database Settings
DATABASE_DIALECT=mysql
DATABASE_DRIVER=+pymysql
DATABASE_HOSTNAME=localhost
DATABASE_PORT=3306
DATABASE_USERNAME=root
DATABASE_PASSWORD=1234567890
DATABASE_NAME=test_fridaystore
DATABASE_POOL_SIZE=5
DATABASE_POOL_OVERFLOW=10
DATABASE_POOL_RECYCLE=3600
# JWT Settings
JWT_SECRET_KEY=test_secret_key_for_testing_only
JWT_ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
# CORS Settings
CORS_ORIGINS=["*"]
CORS_METHODS=["*"]
CORS_HEADERS=["*"]
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
REDIS_SSL=false
REDIS_TIMEOUT=10
QUEUE_JOB_TIMEOUT=600
QUEUE_JOB_TTL=3600
#npx repomix --ignore "scripts/,docs/,.coveragerc,.windsurfrules,LICENSE,mypy.ini,Pipfile,pyproject.toml,README,.pre-commit-config.yaml,migrations/,__tests__/"