Initial working translator implementation
This commit is contained in:
commit
9439858b11
35 changed files with 5365 additions and 0 deletions
17
.env.example
Normal file
17
.env.example
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# JWT 시그니용 키 (변경 권장)
|
||||
JWT_SECRET_KEY=my-super-secret-key-change-me
|
||||
|
||||
# LLM 설정 파일 경로 (기본: config/llms.json)
|
||||
LLMS_CONFIG_PATH=config/llms.json
|
||||
|
||||
# 사용자 설정 파일 경로 (기본: config/users.json)
|
||||
USERS_CONFIG_PATH=config/users.json
|
||||
|
||||
# JWT 만료 시간 (시간 단위, 기본 24시간)
|
||||
JWT_EXPIRE_HOURS=24
|
||||
|
||||
# 서버 포트 (기본 8000)
|
||||
PORT=8000
|
||||
|
||||
# 프론트엔드 빌드 폴더 경로 (기본: frontend/dist)
|
||||
FRONTEND_DIST_PATH=frontend/dist
|
||||
Loading…
Add table
Add a link
Reference in a new issue