{% extends 'uncloud/base.html' %} {% block title %}Welcome to uncloud [beta]{% endblock %} {% block bootstrap5_content %}

Welcome to uncloud [beta]

About uncloud

Welcome to uncloud, the Open Source cloud management system by ungleich. It is an API driven system with some convience views provided by the Django Rest Framework. You can freely access the source code of uncloud. This is a BETA service. As such, some functionality might not be very sophisticated.

Getting started

uncloud is designed to be as easy as possible to use. However, there are some "real world" requirements that need to be met to start using uncloud:

  • First you need to register an account. If you already have one, you can login.
  • If you have forgotten your password or other issues with logging in, you can contact the ungleich support via support at ungleich.ch.
  • Secondy you will need to create a billing address. This is required for determining the correct tax.
  • Next you will need to register a credit card from which payments can be made. Your credit card will not be charged without your consent.

Introduction to uncloud concepts

We plan to offer many services on uncloud ranging from for free, for a small amount or regular charges. As transfer fees are a major challenge for our business, we based uncloud on the pre-paid account model. Which means that you can charge your account and then use your balance to pay for product usage.

Credit cards

Credit cards are registered with stripe. We only save a the last 4 digits and the expiry date of the card to make identification for you easier.

  • Register a credit card (this is required to be done via Javascript so that we never see your credit card, but it is sent directly to stripe)
  • You can list your credit cards By default the first credit card is used for charging ("active: true") and later added cards will not be used. To change this, first disable the active flag and then set it on another credit card.

Billing Address, Payments and Balance

Billing addresses behave similar to credit cards: you can have many of them, but only one can be active. The active billing address is taken for creating new orders.

In uncloud we use the pre-paid model: you can add money to your account via payments. You can always check your balance. The products you use will automatically be charged from your existing balance.

In the future you will be able opt-in to automatically recharging your account at a certain time frame or whenever it is below a certain amount

Networking

With uncloud you can use a variety of network related services.

Current limitations

  • Payments are only possible in CHF.
{% if user.is_authenticated %}

Account Settings

    {% csrf_token %}
    Delete User Account

    Are you sure you want to delete your account? This will permanently delete your profile and any orders you have generated.

    {{ delete_form }}
{% endif %}
{% endblock %}