chore: update README

This commit is contained in:
2025-08-21 10:12:50 +02:00
parent 85d9486d2f
commit 699b758afb

View File

@@ -2,7 +2,21 @@
Not AI-slop, but just regular slop survivors game. Not AI-slop, but just regular slop survivors game.
# Build ## Run
### Web-version using docker
```console
$ docker run --rm -it -p 8080:8080 git.t-juice.club/torjus/slopvivors:latest
```
### Linux version using nix
```console
$nix run git+https://git.t-juice.club/torjus/slopvivors#slopvivors
```
## Build
Build using nix: Build using nix:
@@ -10,12 +24,19 @@ Build using nix:
$ nix build .#\slopvivors $ nix build .#\slopvivors
``` ```
# Development ## Development
Use nix to setup development environment. Contains godot and other useful tools. Use nix to setup development environment. Contains godot and other useful tools.
```console ```console
$ nix develop $ nix develop
$ godot project.godot $ godot project.godot
```
# slop-format runs gdformat on gdscript files, run before commit
$ slop-format
...
# slop-push pushes image with latest-tag to git.t-juice.club
$ slop-push
...
```