Numerous Quick Start Guide

Numerous Quick Start Guide

Follow the steps below to deploy your app on Numerous.

Install

Install the Numerous command-line interface (CLI):

terminal
pip install numerous

Before you install the Numerous CLI, we recommend that you create and activate a Python virtual environment (opens in a new tab).

Initialize

Use the init command to initialize your app:

terminal
numerous init

The numerous init command gives you a short wizard to enter your information. Enter the name of your app, add a description, select which app engine you are working with, and specify relative paths to your app and requirements files.

See how to work with the different app engines here. When you have completed these steps, you are ready to deploy to Numerous.

Login

Now login with the login command:

terminal
numerous login

This step authenticates your device as logged in to the Numerous platform, and enables the following steps.

Create an organization

In case you already have an organization, you can skip this step and instead use the numerous organization list command to get the slug of the organization you want to deploy to.

Create an organization with the organization create command:

terminal
numerous organization create

It will contain the apps you deploy. Use the last part of the returned URL called the "slug" as the identifier for the organization going forward.

For example, if the URL is: https://www.numerous.com/app/organization/my-organization-slug (opens in a new tab),
then the slug is my-organization-slug.

Deploy

The final step is to actually deploy your app to Numerous. The deploy command will package your app and send it to the Numerous platform, where it will be built and launched.

To deploy your app, use the following command:

terminal
numerous deploy --organization=my-organization-slug

Replace my-organization-slug with the slug of the organization you created in the previous step.

The deployment process takes a few seconds, but you will receive status updates throughout the process.

When the deployment process has finished, your app will be available on your organization's app gallery page. To start using and sharing it, go to Numerous (opens in a new tab) and log in.