Management interface for the Recycled Cloud. https://meta.recycled.cloud
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Timothée Floure 15d962bdf8
continuous-integration/drone/push Build is passing Details
Rebase CI environment on alpine linux
1 year ago
config Rename from RecycledCloud / management to Meta 2 years ago
lib Update bamboo and minor mix deps; fix synthax error in user module 1 year ago
priv Add initial OpenNebula XML-RPC Api Integration 3 years ago
rel Initialize release files 3 years ago
test Add captcha to registrations (fixes #9) 3 years ago
.drone.yml Rebase CI environment on alpine linux 1 year ago
.formatter.exs Initial mix/phx project 3 years ago
.gitignore Import forgotten assets into repository 3 years ago
CHANGELOG.md Rename from RecycledCloud / management to Meta 2 years ago
LICENSE.txt Set LICENSE to AGPLv3 (fixes #17) 3 years ago
README.md Rename from RecycledCloud / management to Meta 2 years ago
mix.exs Update bamboo and minor mix deps; fix synthax error in user module 1 year ago
mix.lock Update bamboo and minor mix deps; fix synthax error in user module 1 year ago

README.md

Recycled Cloud Management Interface (Meta)

builds.sr.ht status

This repository tracks the initial work for a web interface atop the recycled cloud. It is written in Elixir, making use of the Phoenix Web Framework.

Notes

  • This project is in its early phase: we're first making things correct and simple. We'll worry about efficiency later.
  • The (Phoenix) project has been initialized with the --no-webpack and --no-dashboard flags to avoid unnecessary clutter. We can add them back later if needed!
  • (sourcehut) CI is defined in .build.yml. It currently runs on my sr.ht account since we do not have our own instance (yet).
  • Authentication is based on José Valim and Aaron Renner's Phx.Gen.Auth, adapted for LDAP-backed authentication.
  • You can run the linter with mix credo.

Getting Started

You'll need Erlang/OTP and elixir installed on your system. It usually boils down to installing the elixir package of your distribution. Once done, you can:

  • Install dependencies with mix deps.get
  • Create and migrate your database with mix ecto.setup
    • You'll need PostgreSQL here. I (tfloure) usually run it in an isolated container with something along the lines of podman run --rm -it -e POSTGRES_HOST_AUTH_METHOD=trust --expose 5432 -p 5432:5432 postgres:latest.
  • Start Phoenix endpoint with mix phx.server (or iex -S mix phx.server, if you want a REPL).

Now you can visit localhost:4000 from your browser.

Useful Resources

Elixir Language:

Phoenix Web Framework: