docs: auto-update repository information [skip ci]
This commit is contained in:
@@ -130,23 +130,24 @@
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 🐙 GitHub Repositories\n",
|
||||
"\n",
|
||||
"### 1. MicroDAO (Current Project)\n",
|
||||
"- **Repository:** `git@github.com:IvanTytar/microdao-daarion.git`\n",
|
||||
"- **HTTPS:** `https://github.com/IvanTytar/microdao-daarion.git`\n",
|
||||
"- **Remote Name:** `origin`\n",
|
||||
"- **Main Branch:** `main`\n",
|
||||
"- **Purpose:** MicroDAO core code, DAGI Stack, documentation\n",
|
||||
"\n",
|
||||
"### 2. DAARION.city\n",
|
||||
"- **Repository:** `git@github.com:DAARION-DAO/daarion-ai-city.git`\n",
|
||||
"- **HTTPS:** `https://github.com/DAARION-DAO/daarion-ai-city.git`\n",
|
||||
"- **Remote Name:** `daarion-city`\n",
|
||||
"- **Main Branch:** `main`\n",
|
||||
"- **Purpose:** Official DAARION.city website and integrations\n",
|
||||
"\n",
|
||||
"---\n"
|
||||
"## 🐙 GitHub Repositories",
|
||||
"",
|
||||
"### 1. MicroDAO (Current Project)",
|
||||
"- **Repository:** `git@github.com:IvanTytar/microdao-daarion`",
|
||||
"- **HTTPS:** `https://github.com/IvanTytar/microdao-daarion`",
|
||||
"- **Remote Name:** `origin`",
|
||||
"- **Main Branch:** `main`",
|
||||
"- **Purpose:** MicroDAO core code, DAGI Stack, documentation",
|
||||
"",
|
||||
"### 2. DAARION.city",
|
||||
"- **Repository:** `git@github.com:DAARION-DAO/daarion-ai-city.git`",
|
||||
"- **HTTPS:** `https://github.com/DAARION-DAO/daarion-ai-city.git`",
|
||||
"- **Remote Name:** `daarion-city`",
|
||||
"- **Main Branch:** `main`",
|
||||
"- **Purpose:** Official DAARION.city website and integrations",
|
||||
"",
|
||||
"---",
|
||||
""
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -155,49 +156,50 @@
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"# GitHub Repositories Configuration\n",
|
||||
"REPOSITORIES = {\n",
|
||||
" \"microdao-daarion\": {\n",
|
||||
" \"name\": \"MicroDAO\",\n",
|
||||
" \"ssh_url\": \"git@github.com:IvanTytar/microdao-daarion.git\",\n",
|
||||
" \"https_url\": \"https://github.com/IvanTytar/microdao-daarion.git\",\n",
|
||||
" \"remote_name\": \"origin\",\n",
|
||||
" \"main_branch\": \"main\",\n",
|
||||
" \"purpose\": \"MicroDAO core code, DAGI Stack, documentation\",\n",
|
||||
" \"clone_cmd\": \"git clone git@github.com:IvanTytar/microdao-daarion.git\"\n",
|
||||
" },\n",
|
||||
" \"daarion-ai-city\": {\n",
|
||||
" \"name\": \"DAARION.city\",\n",
|
||||
" \"ssh_url\": \"git@github.com:DAARION-DAO/daarion-ai-city.git\",\n",
|
||||
" \"https_url\": \"https://github.com/DAARION-DAO/daarion-ai-city.git\",\n",
|
||||
" \"remote_name\": \"daarion-city\",\n",
|
||||
" \"main_branch\": \"main\",\n",
|
||||
" \"purpose\": \"Official DAARION.city website and integrations\",\n",
|
||||
" \"clone_cmd\": \"git clone git@github.com:DAARION-DAO/daarion-ai-city.git\"\n",
|
||||
" }\n",
|
||||
"}\n",
|
||||
"\n",
|
||||
"print(\"GitHub Repositories:\")\n",
|
||||
"print(\"=\"*80)\n",
|
||||
"for repo_id, repo in REPOSITORIES.items():\n",
|
||||
" print(f\"\\n{repo['name']} ({repo_id})\")\n",
|
||||
" print(f\" SSH URL: {repo['ssh_url']}\")\n",
|
||||
" print(f\" HTTPS URL: {repo['https_url']}\")\n",
|
||||
" print(f\" Remote: {repo['remote_name']}\")\n",
|
||||
" print(f\" Branch: {repo['main_branch']}\")\n",
|
||||
" print(f\" Purpose: {repo['purpose']}\")\n",
|
||||
" print(f\" Clone: {repo['clone_cmd']}\")\n",
|
||||
"\n",
|
||||
"print(\"\\n\" + \"=\"*80)\n",
|
||||
"print(\"\\nQuick Commands:\")\n",
|
||||
"print(\"\\n# Clone MicroDAO:\")\n",
|
||||
"print(\"git clone git@github.com:IvanTytar/microdao-daarion.git\")\n",
|
||||
"print(\"\\n# Clone DAARION.city:\")\n",
|
||||
"print(\"git clone git@github.com:DAARION-DAO/daarion-ai-city.git\")\n",
|
||||
"print(\"\\n# Add DAARION.city as remote to MicroDAO:\")\n",
|
||||
"print(\"cd microdao-daarion\")\n",
|
||||
"print(\"git remote add daarion-city git@github.com:DAARION-DAO/daarion-ai-city.git\")\n",
|
||||
"print(\"git fetch daarion-city\")\n"
|
||||
"# GitHub Repositories Configuration",
|
||||
"REPOSITORIES = {",
|
||||
" \"microdao-daarion\": {",
|
||||
" \"name\": \"MicroDAO\",",
|
||||
" \"ssh_url\": \"git@github.com:IvanTytar/microdao-daarion\",",
|
||||
" \"https_url\": \"https://github.com/IvanTytar/microdao-daarion\",",
|
||||
" \"remote_name\": \"origin\",",
|
||||
" \"main_branch\": \"main\",",
|
||||
" \"purpose\": \"MicroDAO core code, DAGI Stack, documentation\",",
|
||||
" \"clone_cmd\": \"git clone git@github.com:IvanTytar/microdao-daarion\"",
|
||||
" },",
|
||||
" \"daarion-ai-city\": {",
|
||||
" \"name\": \"DAARION.city\",",
|
||||
" \"ssh_url\": \"git@github.com:DAARION-DAO/daarion-ai-city.git\",",
|
||||
" \"https_url\": \"https://github.com/DAARION-DAO/daarion-ai-city.git\",",
|
||||
" \"remote_name\": \"daarion-city\",",
|
||||
" \"main_branch\": \"main\",",
|
||||
" \"purpose\": \"Official DAARION.city website and integrations\",",
|
||||
" \"clone_cmd\": \"git clone git@github.com:DAARION-DAO/daarion-ai-city.git\"",
|
||||
" }",
|
||||
"}",
|
||||
"",
|
||||
"print(\"GitHub Repositories:\")",
|
||||
"print(\"=\"*80)",
|
||||
"for repo_id, repo in REPOSITORIES.items():",
|
||||
" print(f\"\\n{repo['name']} ({repo_id})\")",
|
||||
" print(f\" SSH URL: {repo['ssh_url']}\")",
|
||||
" print(f\" HTTPS URL: {repo['https_url']}\")",
|
||||
" print(f\" Remote: {repo['remote_name']}\")",
|
||||
" print(f\" Branch: {repo['main_branch']}\")",
|
||||
" print(f\" Purpose: {repo['purpose']}\")",
|
||||
" print(f\" Clone: {repo['clone_cmd']}\")",
|
||||
"",
|
||||
"print(\"\\n\" + \"=\"*80)",
|
||||
"print(\"\\nQuick Commands:\")",
|
||||
"print(\"\\n# Clone MicroDAO:\")",
|
||||
"print(\"git clone git@github.com:IvanTytar/microdao-daarion.git\")",
|
||||
"print(\"\\n# Clone DAARION.city:\")",
|
||||
"print(\"git clone git@github.com:DAARION-DAO/daarion-ai-city.git\")",
|
||||
"print(\"\\n# Add DAARION.city as remote to MicroDAO:\")",
|
||||
"print(\"cd microdao-daarion\")",
|
||||
"print(\"git remote add daarion-city git@github.com:DAARION-DAO/daarion-ai-city.git\")",
|
||||
"print(\"git fetch daarion-city\")",
|
||||
""
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -523,4 +525,4 @@
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user