diff --git a/README.md b/README.md index 6008d54..5a08c98 100644 --- a/README.md +++ b/README.md @@ -1 +1,23 @@ -# discord-open-source \ No newline at end of file +# discord-open-source + +## Brief overview + +| Repo name | Brief description | +| :-------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------- | +| [CSS](https://github.com/discord-open-source/discord-css) | Unofficial css framework in the style of Discord. | +| [Server](https://github.com/discord-open-source/discord-server) | Discord-server for discord-client | +| [Dashboard](https://github.com/discord-open-source/discord-dashboard) | An admin dashboard for discord-server | +| [Client](https://github.com/discord-open-source/discord-client) | Discord Client for discord-server | +| [CDN](https://github.com/discord-open-source/discord-cdn) | [Content-delivery-network](https://www.cloudflare.com/learning/cdn/what-is-a-cdn/) for the server, used to store images and assets | +| [React](https://github.com/discord-open-source/discord-react) | All discord-css components for React | +| [React-Native](https://github.com/discord-open-source/discord-react-native) | All discord-css components for React-Native | + +## Get started + +```bash +>>> git clone https://github.com/discord-open-source/discord-open-source.git +>>> cd discord-open-source/setup +>>> setup +``` + +## Contribute diff --git a/setup/setup.bat b/setup/setup.bat new file mode 100644 index 0000000..4ed3052 --- /dev/null +++ b/setup/setup.bat @@ -0,0 +1,38 @@ +@ECHO off +ECHO. +ECHO Discord-Open-Source-Installer +ECHO v0.1 ~xnacly +ECHO. +ECHO str+c/str+d to exit +ECHO 1: /discord-dashboard.git +ECHO 2: /discord-server.git +ECHO 3: /discord-cdn.git +ECHO 4: /discord-client.git +ECHO 5: /discord-react-native.git +ECHO 6: /discord-react.git +ECHO 7: /discord-css.git +ECHO A: all of the above +ECHO. +CHOICE /c 1234567a /m "decide what repos to install" + + +IF ERRORLEVEL ==A GOTO ALL +IF ERRORLEVEL ==1 +IF ERRORLEVEL ==2 +IF ERRORLEVEL ==3 +IF ERRORLEVEL ==4 +IF ERRORLEVEL ==5 +IF ERRORLEVEL ==6 +IF ERRORLEVEL ==7 + +:ALL +cd .. +mkdir discord-open-source-repos +cd discord-open-source-repos +git clone https://github.com/discord-open-source/discord-dashboard.git +git clone https://github.com/discord-open-source/discord-server.git +git clone https://github.com/discord-open-source/discord-cdn.git +git clone https://github.com/discord-open-source/discord-client.git +git clone https://github.com/discord-open-source/discord-react-native.git +git clone https://github.com/discord-open-source/discord-react.git +git clone https://github.com/discord-open-source/discord-css.git