1.5K
Travelers, BEWARE!! This is essentially gamma-stage software. While bugfixes and PRs and such are welcome, they will most likely get overwritten as I develop this app further.
There is an instance staged to https://ore-staging.spongepowered.orgā with docker and magic web scale sauceā¢. Don't get too attached to whatever you put there, because it's most likely going to be reset.
Also see ore-frontendā , the frontend for Ore.
Q: Why is this on GitHub?
Simply put, FOSS(Free and Open Source Software) is the best software. We dislike the closed nature of BukkitDev, and as part of the goal of moving the Minecraft community forward we have decided to open-source this project and MIT-license from the start. Anyone can contribute, make an issue or PR, or read the source freely.
This also allows users to run their own Ore repositories if they wish, and we hope to make that easier by sticking this project in a Docker container.
Q: Is this project more like BukkitDev or a package manager?
Yes.
Q: Elaborate?
In its current stages Ore looks more like an open-source version of BukkitDev (BOOYAH open source software!). We plan to eventually create a package manager that consumes an Ore repository that can install plugins.
Q: So I should tell my doctor to not go ahead with the operation of surgically attaching me to it?
We're very excited for the possibilities of this project in causing the machine-human singularity but please remember that it is a zeta-level feature.
Q: More FAQ soon?
Yes.
Written with Python 3 and Django 1.9. Requires Node.jsā You should probably use virtualenv.
virtualenv venv in the root of the project.source venv/bin/activate.pip install -r requirements/development.txtrepo, user admin and password password.npm installpython ore/manage.py migratepython ore/manage.py runserverNote that we use Postgres, both in production and development. We can and probably will choose to use Postgres-only features, so beware!
Builds are automatically published to the central Docker registryā .
The application environment is determined by which setting configurationā is passed
into the DJANGO_SETTINGS_MODULE environment variable.
Other environment variables to note:
SECRET_KEY: the secret key of the application, used for cookies and other secret thingsDB_USER: the database userDB_PASSWORD: the database passwordDB_NAME: which database to connect to, default 'repo'WEBDB_PORT_5432_TCP_PORT: the port of the database to connect to, provided by docker if the container is run with --link <postgres>:webdbWEBDB_PORT_5432_TCP_ADDR: the host of the database to connect to, provided by docker if the container is run with --link <postgres>:webdb$ docker run -dP --name webdb \
-e POSTGRES_USER=repo -e POSTGRES_PASSWORD=much_secret \
postgres
$ docker run -dp 80:80 --link webdb:webdb \
-e DB_USER=repo -e DB_PASSWORD=much_secret -e SECRET_KEY=much_secret \
spongepowered/ore
If you need to migrate a production database:
$ docker run -t --link webdb:webdb \
-e DB_USER=repo -e DB_PASSWORD=much_secret -e SECRET_KEY=much_secret \
spongepowered/ore python3 ore/manage.py migrate
We really appreciate any and all contributions! Contribute code with a PR or ideas with issues and/or discussion. If you wish to discuss something that isn't a project issue, please discuss Ore in the Sponge Web subforumā instead.
By contributing code to Ore, you agree to license your contribution under the MIT license to this project. You still hold copyright to your work, as detailed in the licenseā .
Content type
Image
Digest
sha256:ad9472a6cā¦
Size
287.7 MB
Last updated
over 10 years ago
docker pull spongepowered/ore