Skip to content

Commit

Permalink
More info in README & wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
wolveix committed Sep 12, 2024
1 parent 8679f21 commit 230fa9a
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 6 deletions.
23 changes: 19 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,31 @@ labels: ''
assignees: ''
---

**Describe the Bug**
### [Experiencing issues? Check our Troubleshooting FAQ wiki!](https://github.com/wolveix/satisfactory-server/wiki/Troubleshooting-FAQ)

### Describe the Bug

A clear and concise description of what the bug is.

**Your Runtime Command or Docker Compose File**
### Your Runtime Command or Docker Compose File

Please censor anything sensitive. Your runtime command might look like this:

```shell
docker run --name="satisfactory" -p 7777 -v ./satisfactory:/config wolveix/satisfactory-server:latest
```

**System Specs (please complete the following information):**
### Debug Output

Run the container with `DEBUG=true` as an environment variable, and it'll print out the system specs requested below, as
well as a bunch of information about your container (version, environment variables, etc.)

```shell
OUTPUT HERE
```

### System Specs (please complete the following information):

If you're on Linux, just paste the following block as a single command, and paste the output here.

```shell
Expand All @@ -35,5 +49,6 @@ Alternatively, you can find the information manually. Here's what we're looking
- RAM: [e.g. 4GB/16GB] (Linux: `cat /proc/meminfo | grep Mem`)
- HDD; [e.g. 22GB/251GB (9% used)] (Linux: `df -h`)

**Additional Context**
### Additional Context

Add any other context about the problem here.
Binary file added .github/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Satisfactory Server

![Satisfactory](https://raw.githubusercontent.com/wolveix/satisfactory-server/main/.github/logo.png "Satisfactory logo")

![Release](https://img.shields.io/github/v/release/wolveix/satisfactory-server)
![Docker Pulls](https://img.shields.io/docker/pulls/wolveix/satisfactory-server)
![Docker Stars](https://img.shields.io/docker/stars/wolveix/satisfactory-server)
Expand All @@ -12,6 +14,8 @@ You can alternatively try [saveshare](https://github.com/wolveix/satisfactory-se
relies on
client-hosting).

### [Experiencing issues? Check our Troubleshooting FAQ wiki!](https://github.com/wolveix/satisfactory-server/wiki/Troubleshooting-FAQ)

## Upgrading for Satisfactory 1.0

Satisfactory is finally out of early access! 🎉
Expand Down
2 changes: 1 addition & 1 deletion init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ OS: $(uname -a)
CPU: $(lscpu | grep 'Model name:' | sed 's/Model name:[[:space:]]*//g')
RAM: $(awk '/MemAvailable/ {printf( "%d\n", $2 / 1024000 )}' /proc/meminfo)GB/$(awk '/MemTotal/ {printf( "%d\n", $2 / 1024000 )}' /proc/meminfo)GB
HDD: $(df -h | awk '$NF=="/"{printf "%dGB/%dGB (%s used)\n", $3,$2,$5}')"
printf "\\nCurrent version:\\n%s" "${VERSION}"
printf "\\nCurrent user:\\n%s" "$(id)"
printf "\\nProposed user:\\nuid=%s(?) gid=%s(?) groups=%s(?)\\n" "$PUID" "$PGID" "$PGID"
printf "\\nExiting...\\n"
Expand Down Expand Up @@ -84,7 +85,6 @@ fi
mkdir -p \
/config/backups \
/config/gamefiles \
/config/overrides \
/config/saved/blueprints \
/config/saved/server \
"${GAMECONFIGDIR}/Config/LinuxServer" \
Expand Down
3 changes: 2 additions & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ else
fi

ini_args=(
"-ini:Engine:[HTTPServer.Listeners]:DefaultBindAddress=any"
"-ini:Engine:[Core.Log]:LogNet=Error"
"-ini:Engine:[Core.Log]:LogNetTraffic=Warning"
"-ini:Engine:[/Script/FactoryGame.FGSaveSession]:mNumRotatingAutosaves=$AUTOSAVENUM"
Expand Down Expand Up @@ -102,4 +103,4 @@ fi

cd /config/gamefiles || exit 1

exec ./FactoryServer.sh -Port="$SERVERGAMEPORT" -ini:Engine:[HTTPServer.Listeners]:DefaultBindAddress=any "${ini_args[@]}" "$@"
exec ./FactoryServer.sh -Port="$SERVERGAMEPORT" "${ini_args[@]}" "$@"

0 comments on commit 230fa9a

Please sign in to comment.