Documentation

Supported Platforms

Python

Fully supported

Node.js

Coming soon

Laravel

Coming soon

Golang

Coming soon

Shipfile Configuration

The Shipfile is a configuration file that controls your app's deployment. It uses a YAML-like syntax and supports two main commands:

1. script (Pre-run commands)

Used for running commands before the main application starts.

Single line command:

script: python manage.py migrate

Multiple line commands:

script: |
  python manage.py makemigrations
  python manage.py migrate

2. run (Entry point)

Specifies the command to start your application.

Examples:

run: python main.py
run: uvicorn main:app --host 0.0.0.0 --port 8000

Full Examples

Here are some complete Shipfile examples:

Basic Django application:

script: python manage.py migrate
run: gunicorn myproject.wsgi:application

FastAPI application with multiple setup steps:

script: |
  pip install -r requirements.txt
  alembic upgrade head
run: uvicorn main:app --host 0.0.0.0 --port 8000

Node.js application:

script: npm install
run: node server.js

Remember, the Shipfile should be placed in the root directory of your project and named exactly Shipfile (no file extension).

Python Deployment Steps

  1. Click the "Create App" button
  2. Enter a unique app name - This will be your subdomain: your-app-name.deploy.tz
  3. Select Python as your app type
  4. Provide your public GitHub repository URL (private repos support coming soon)
  5. Ensure your repository has the required files:
    • requirements.txt
    • Shipfile
  6. Click create and wait for deployment
  7. Access your app at your-app-name.deploy.tz