You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env python
|
|
# backend/scripts/gen_secret.py — ARI_SECRET_KEY / SESSION_SECRET 생성
|
|
import secrets
|
|
|
|
if __name__ == "__main__":
|
|
print("SESSION_SECRET=" + secrets.token_urlsafe(48))
|
|
print("ARI_SECRET_KEY=" + secrets.token_urlsafe(48))
|