1
0
mirror of https://github.com/spacebarchat/docs.git synced 2024-11-22 02:02:32 +01:00
https://github.com/fosscord/fosscord-docs/pull/21/
I added it to my PR so you don't have to merge two. :)
This commit is contained in:
Natsuki.HX 2022-02-18 20:47:59 +01:00 committed by GitHub
parent b2cf7cecbd
commit f95fc1a289
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

52
docs/client/connect.md Normal file
View File

@ -0,0 +1,52 @@
# Client
## Use your discord client for your instance.
In order to set your **ENDPOINT** follow these simple steps
- Go to this folder (`%appdata%/yourdiscord_client | Example: %appdata%/discordptb`)
- There is a file called (`settings.json`) the contents of this file are (`They can be different depending on your discord's client settings`) :
```js
{
"IS_MAXIMIZED": true,
"IS_MINIMIZED": false,
"WINDOW_BOUNDS": {
"x": 335,
"y": 86,
"width": 940,
"height": 600
},
"BACKGROUND_COLOR": "#202225"
}
```
- Add this line to ( `settings.json` )
```js
"WEBAPP_ENDPOINT" : "https://your_fosscord_instace_url"
```
- It should look like this after you add the line:
```js
{
"IS_MAXIMIZED": true,
"IS_MINIMIZED": false,
"WINDOW_BOUNDS": {
"x": 335,
"y": 86,
"width": 940,
"height": 600
},
"BACKGROUND_COLOR": "#202225",
"WEBAPP_ENDPOINT" : "https://your_fosscord_instace_url"
}
```
- After this close your discord client and reopen it and you are all done!
// Made by ImAaronFR
// Added to PR and specific folder by AToska21