mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-16 08:16:55 +00:00
6 lines
176 B
Python
6 lines
176 B
Python
import os
|
|
|
|
BASE_URL = os.getenv('CI_BASE_URL', u'http://127.0.0.1:8000')
|
|
USERNAME = os.getenv('CI_USERNAME', u'test@test.com')
|
|
PASSWORD = os.getenv('CI_PASSWORD', u'testtest')
|