1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-08 11:42:39 +01:00

project overview + init setup scripts

This commit is contained in:
xnacly 2021-01-27 19:50:26 +01:00
parent 108736ac9d
commit 0d315f28f9
2 changed files with 61 additions and 1 deletions

View File

@ -1 +1,23 @@
# discord-open-source
# 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

38
setup/setup.bat Normal file
View File

@ -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