Skip to content

Horizon Server 0.0.1-A

Pre-release
Pre-release
Compare
Choose a tag to compare
@tristanpoland tristanpoland released this 11 May 15:53
· 856 commits to main since this release
0855f23

What's Changed

New Contributors

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.

References