1
0
mirror of https://github.com/spacebarchat/docs.git synced 2024-09-19 15:11:44 +02:00

Remove bundle references

This commit is contained in:
TheArcaneBrony 2022-09-06 01:57:44 +02:00
parent 12f6915538
commit 9b9f5a2c8d
No known key found for this signature in database
GPG Key ID: 32FC5AAADAD75A22
3 changed files with 4 additions and 5 deletions

View File

@ -4,7 +4,7 @@ Some configuration is done via environment variables. If you can't find what you
## Editing
In order to edit environment variables, just create a file called ``.env`` in ``bundle/``. In there, you can declare variables in the format ``VARIABLE=value``.
In order to edit environment variables, just create a file called ``.env`` in the fosscord-server directory. In there, you can declare variables in the format ``VARIABLE=value``.
If you want to globally assign variables, use `export` on Linux or `set` on Windows.
For example: `export THREADS=8`.

View File

@ -16,12 +16,12 @@ This is the latest bleeding edge version of fosscord-server, which may have bugs
#### Requirements
- [NodeJS](https://nodejs.org) v14+
- [NodeJS](https://nodejs.org) v16+
- [Python](https://python.org) 3
- (Only on Linux) ``gcc`` and ``g++`` | Packaged with `build-essential` on Debian/Ubuntu and `base-devel` on Arch
- (Only on Windows) [Visual Studio](https://visualstudio.microsoft.com/) with the C++ package
!!! info "Make sure python can be executed by just running `python`"
!!! info "Make sure python can be executed and is a correct version by just running `python -V`"
#### Setup
@ -30,7 +30,6 @@ Open a shell/terminal and execute these commands:
```
git clone https://github.com/fosscord/fosscord-server
cd fosscord-server
cd bundle
npm run setup
npm run start:bundle
```

View File

@ -8,7 +8,7 @@ Description=<your description>
[Service]
User=<your user>
WorkingDirectory=<fosscord bundle directory>
WorkingDirectory=<fosscord directory>
ExecStart=npm run start:bundle
Restart=always