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

Merge branch 'master' of github.com:spacebarchat/docs

This commit is contained in:
Madeline 2023-08-12 15:42:05 +10:00
commit 15766f540e
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47
3 changed files with 13 additions and 13 deletions

View File

@ -17,13 +17,13 @@ content:
```json
{
"api": "https://staging.{{ project.domain }}/api/v9",
"cdn": "https://cdn.staging.{{ project.domain }}",
"gateway": "wss://gateway.staging.{{ project.domain }}",
"invite": "https://staging.{{ project.domain }}/invite",
"template": "https://staging.{{ project.domain }}/template",
"gift": "https://staging.{{ project.domain }}/gift",
"scheduledEvent": "https://staging.{{ project.domain }}/events"
"api": "https://api.old.server.{{ project.domain }}/api/v9",
"cdn": "https://cdn.old.server.{{ project.domain }}",
"gateway": "wss://gateway.old.server.{{ project.domain }}",
"invite": "https://old.server.{{ project.domain }}/invite",
"template": "https://old.server.{{ project.domain }}/template",
"gift": "https://old.server.{{ project.domain }}/gift",
"scheduledEvent": "https://old.server.{{ project.domain }}/events"
}
```
@ -39,14 +39,14 @@ These Instructions refer to the old, React Native client, and therefore do not a
### Dependencies
- [Git](https://git-scm.com/)
- [NodeJS](https://nodejs.org). Version 16+
- [yarn](https://yarnpkg.com/) (preferred) or npm
- [NodeJS](https://nodejs.org). Version 18+
- [yarn](https://yarnpkg.com/)
In your terminal:
```bash
# Download {{ project.name }} Client
git clone {{ repositories.base_url }}/{{ repositories.client }}.git
git clone {{ repositories.base_url }}/{{ repositories.client }}.git -b legacy-v2
# Enter the cloned directory, switch branches to the one, which is actually being developed
cd client

View File

@ -15,7 +15,7 @@ Below is a list of guild features that {{ project.name }} currently implements s
| `ALIASABLE_NAMES` | Allows multiple vanity URLs |
| `VANITY_URL` | Allows vanity URLs |
| `INTERNAL_EMPLOYEE_ONLY` | Requires all guild members be [staff](userFlags.md) |
| `INVITES_CLOSED` | Prevents joining this guild |
| `INVITES_DISABLED` | Prevents joining this guild |
| `CROSS_CHANNEL_REPLIES` | Allows replies to be from outside the current channel |
| `ALLOW_INVALID_CHANNEL_NAMES` | Allow 'bad' channel names (spaces, invalid characters, etc) |
| `IRC_LIKE_CATEGORY_NAMES` | Use same validation for category names as channel names |

View File

@ -14,8 +14,8 @@ We do not recommend using Windows to run {{ project.name }}.
## Dependencies
- [Git](https://git-scm.com/)
- [NodeJS](https://nodejs.org). Version 16+ (for `npm`, `node` commands)
- [Python](https://www.python.org/). Version 3+. Make sure this is executable via `python` in your terminal.
- [NodeJS](https://nodejs.org). Version 18+ (for `npm`, `node` commands)
- [Python](https://www.python.org/). Version 3.10 or later. Make sure this is executable via `python` in your terminal.
(See: `python-is-python3` package)
- On Linux: `gcc`/`g++`. Packaged with `build-essential` on Debian/Ubuntu and `base-devel` on Arch.
- On Windows: [Visual Studio](https://visualstudio.microsoft.com/) (**NOT** VSCode) with the `Desktop development with C++` package.