Skip to content

Commit

Permalink
Merge branch 'master' of github.com:spacebarchat/docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddyUnderStars committed Aug 12, 2023
2 parents e424fce + 171eb24 commit 15766f5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions docs/setup/clients/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/setup/server/configuration/guildFeatures.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
4 changes: 2 additions & 2 deletions docs/setup/server/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 15766f5

Please sign in to comment.