https://github.com/tom-wolfe/wolfe.spacetraders
A client for the SpaceTraders.io game.
https://github.com/tom-wolfe/wolfe.spacetraders
Last synced: 2 months ago
JSON representation
A client for the SpaceTraders.io game.
- Host: GitHub
- URL: https://github.com/tom-wolfe/wolfe.spacetraders
- Owner: tom-wolfe
- License: mit
- Created: 2023-07-14T11:20:39.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-07T12:53:43.000Z (over 1 year ago)
- Last Synced: 2025-01-28T13:43:55.772Z (4 months ago)
- Language: C#
- Size: 428 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SpaceTraders
This project is a work in progress for automating the [SpaceTraders](https://spacetraders.io/) game. The goal is to create a bot that can play the game for you.
## Getting Started
This project uses MongoDB as its data store. There is a Docker Compose file that will start a MongoDB instance for you. To start the database, run the following command from the root of the project:
```bash
docker compose --file build/docker-compose.yml up --detach
```If you make a mistake, you can tear down the all the containers with the following command:
```bash
docker compose --project-name space-traders down --volumes
```## MongoDB
By default, MongoDB runs on port 27017. There's a Mongo Express Web UI that runs on port 8081. You can access it at [http://localhost:8081](http://localhost:8081).
You can also connect to the database using Mongo Compass as a UI.
```bash