15 lines
374 B
Python
Executable File
15 lines
374 B
Python
Executable File
#! .venv/bin/python
|
|
# Add root application dir to the python path
|
|
import os
|
|
import sys
|
|
|
|
parent_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
|
|
sys.path.append(parent_dir)
|
|
|
|
from atst.app import make_config, make_app
|
|
|
|
if __name__ == "__main__":
|
|
config = make_config({"DISABLE_CRL_CHECK": True})
|
|
app = make_app(config)
|
|
app.csp.crls.sync_crls()
|