1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-25 20:02:55 +01:00
spacebarchat/scripts/setup/generate.py
xnacly 78c87060d0 updated the setup script
- now allows for easier addition of new repos via a python script
- split setup.sh to setup.py & clone_all_repos.sh to make dynamic addition of all repos with the github api easier
- vscode workspace now gets generated from all repos in the orga
2021-07-20 11:37:29 +02:00

23 lines
640 B
Python

# script to:
# - get all repo git urls from the fosscord orga and format them to make the process of updating the setup script less tiresome
# - create a workspace file for VScode
import requests
workspace = {
"folders":[]
}
repos = ""
response = requests.get("https://api.github.com/users/fosscord/repos").json()
for repo in response:
name = repo['name'].replace('fosscord-','')
workspace["folders"].append({"path":f"{name}"})
repos += f"git clone {repo['git_url']} {name}\n"
with open("clone_all_repos.sh","w") as f:
f.write(repos)
with open("fosscord.code-workspace", "w") as f:
f.write(str(workspace).replace("'",'"'))