Skip to content

Repository files navigation

Faable

Your React, Node.js or Python apps, up to the cloud in seconds.

Faable

Faable is the best platform to build modern architectures that scale precisely to meet demand. We handle the hard stuff so you can focus on building cloud ready apps. Make your business cloud driven and join those awesome companies.

To install the latest version of Faable CLI:

npm i -g @faable/faable

Runtimes

faable deploy auto-detects the runtime from the files in your project (no config needed in the common case):

Detected byRuntime
package.jsonNode.js (Next.js, Vite, Astro, Gatsby, CRA, Vue, Angular, …)
requirements.txt / pyproject.toml / PipfilePython
DockerfileYour own image (any language)

A project with a package.json is always treated as Node. To deploy a Python backend that also has a package.json, ship a Dockerfile instead.

Node.js / static frameworks

SPA frameworks are built and served automatically. If the project has no start script, the built output is served statically (e.g. Vite → npx vite preview, CRA/Vue/Angular → serve). If it defines a start script (custom SSR, Next.js, Nuxt, Remix, …), that command is used.

Python

The start command is detected from your framework:

FrameworkDetected fromStart command
Djangomanage.py + the package with wsgi.pygunicorn <pkg>.wsgi:application
FastAPI / ASGIfastapi/uvicorn/starlette depuvicorn <module>:app
Flaskflask depgunicorn <module>:app

Dependencies are installed inside the image from requirements.txt, pyproject.toml or Pipfile. gunicorn/uvicorn are installed automatically if missing.

Pin the Python version with a runtime.txt (python-3.11.3), a .python-version, or requires-python in pyproject.toml.

Overriding detection

When auto-detection doesn't fit, set the commands explicitly:

  • faable.json{ "buildCommand": "...", "startCommand": "..." }
  • Procfile — a web: line, e.g. web: gunicorn app:app --bind 0.0.0.0:$PORT

Precedence: faable.jsonProcfile → auto-detection. The container listens on $PORT (80).

Documentation

For details on how to use Faable CLI, check out our documentation.

About

📦 Deploy to Faable Cloud with our awesome CLI tool 🎉

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Used by

Contributors

Languages