Skip to content

Releases: Far-Beyond-Dev/Horizon

Horizon Community Edition 0.0.5-a

10 Jul 13:36
62bc550
Compare
Choose a tag to compare
Pre-release

What's Changed

New Contributors

Full Changelog: 0.0.4-a...0.0.5-a

Horizon Community Edition 0.0.4

26 Jun 22:39
56c2c90
Compare
Choose a tag to compare
Pre-release

What's Changed

Full Changelog: 0.0.3...0.0.4-a

Horizon Community Edition 0.0.3

16 Jun 22:20
a1ada15
Compare
Choose a tag to compare
Pre-release

What's Changed

New Contributors

Full Changelog: 0.0.2...0.0.3

Horizon Server 0.0.2

16 Jun 15:27
d1770ac
Compare
Choose a tag to compare
Horizon Server 0.0.2 Pre-release
Pre-release

What's Changed

Full Changelog: 0.0.1-B...0.0.2

Horizon Server 0.0.1

18 May 17:21
Compare
Choose a tag to compare
Horizon Server 0.0.1 Pre-release
Pre-release

What's Changed

Full Changelog: 0.0.1-A...0.0.1-B

Horizon Server 0.0.1-A

11 May 15:53
0855f23
Compare
Choose a tag to compare
Pre-release

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