Horizon Server 0.0.1-A
Pre-releaseWhat's Changed
- Im a bit rusty by @tristanpoland in #1
- Rust migration by @tristanpoland in #2
- Updated Rust codebase by @tristanpoland in #3
- Added py gitignore by @tristanpoland in #4
New Contributors
- @tristanpoland made their first contribution in #1
Full Changelog: https://github.com/AstroVerse-Studios/Horizon/commits/0.0.1-A
Installation
Building and running the application yourself
-
Clone the
Main
branch of this repository for the latest version or download the source code below this release -
Install Docker Desktop or the Docker engine alongside Docker-Compose
-
Open a Terminal in the folder you cloned or extract the source code to a folder and open a terminal there
-
When you're ready, start the application by running:
docker compose up --build
.
The application will be available at http://localhost:3000 and http://localhost:3001.
Deploying the application to the cloud
-
First, build your image, e.g.:
docker build -t myapp .
.
If your cloud uses a different CPU architecture than your development
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
you'll want to build the image for that platform, e.g.:
docker build --platform=linux/amd64 -t myapp .
. -
Then, push it to your registry, e.g.
docker push myregistry.com/myapp
.
Consult Docker's getting started
docs for more detail on building and pushing.