mirror of https://github.com/zulip/zulip.git
28 lines
754 B
Python
Executable File
28 lines
754 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import sys
|
|
|
|
ZULIP_PATH = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
if ZULIP_PATH not in sys.path:
|
|
sys.path.append(ZULIP_PATH)
|
|
|
|
# unset PIP_USER if set, since it is not compatible with virtualenvs.
|
|
os.environ.pop("PIP_USER", None)
|
|
|
|
from scripts.lib.setup_venv import setup_virtualenv
|
|
from scripts.lib.zulip_tools import overwrite_symlink
|
|
|
|
VENV_PATH = "/srv/zulip-py3-venv"
|
|
|
|
DEV_REQS_FILE = os.path.join(ZULIP_PATH, "requirements", "dev.txt")
|
|
|
|
|
|
def main() -> None:
|
|
cached_venv_path = setup_virtualenv(VENV_PATH, DEV_REQS_FILE, patch_activate_script=True)
|
|
overwrite_symlink(cached_venv_path, os.path.join(ZULIP_PATH, "zulip-py3-venv"))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|