43 lines
690 B
Markdown
43 lines
690 B
Markdown
# Slopvivors
|
|
|
|
Not AI-slop, but just regular slop survivors game.
|
|
|
|
## 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:
|
|
|
|
```console
|
|
$ nix build .#\slopvivors
|
|
```
|
|
|
|
## Development
|
|
|
|
Use nix to setup development environment. Contains godot and other useful tools.
|
|
|
|
```console
|
|
$ nix develop
|
|
$ 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
|
|
...
|
|
```
|