https://github.com/crowdagger/rallisp
Maybe a car game?
https://github.com/crowdagger/rallisp
Last synced: 3 months ago
JSON representation
Maybe a car game?
- Host: GitHub
- URL: https://github.com/crowdagger/rallisp
- Owner: crowdagger
- License: apache-2.0
- Created: 2025-11-02T05:31:12.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-11-05T01:04:30.000Z (8 months ago)
- Last Synced: 2025-11-05T03:07:25.823Z (8 months ago)
- Language: Scheme
- Size: 36.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Rallisp
An attempt at a turn-based racing game.
## Controls
To enter your acceleration/braking and steering, click on the bottom-right corner.
## Credits and license
Based on the [Hoot Game Jam
Template](https://codeberg.org/spritely/hoot-game-jam-template). The
license is the same Apache License.
## Building
The fastest way to get everything you need is to use [GNU
Guix](https://guix.gnu.org), a wonderful package manager written in
Scheme.
Once you have Guix, the development environment with all necessary
dependencies can be created:
```
guix shell
```
To build the game, run:
```
make
```
To launch a development web server, run:
```
make serve
```
To check if the program works, visit https://localhost:8088 in your
web browser. We recommend using Mozilla Firefox or Google Chrome.
Hoot is not supported on Safari at this time.
When it's time to publish the game to itch.io, run:
```
make bundle
```
Upload the resulting zip file to your itch.io game page and share your
game with others! Have fun!