Quitter la démo
NovaTech
docs
Voir l’équipe

Démarrage

Déploiement

Auto-scaling

Démarrage rapide

Suivez ce guide pour déployer votre première application sur NovaTech en moins de 5 minutes.

Pré-requis

  • Node.js 18+ installé
  • Un compte NovaTech (gratuit)
  • Un projet git initialisé

Étape 1 : Installation du CLI

Installez le CLI NovaTech globalement via npm :

1npm install -g @novatech/cli

Étape 2 : Authentification

Connectez-vous à votre compte NovaTech :

1nova login\n# Opens browser for authentication\n# \u2713 Authenticated as user@email.com

Étape 3 : Initialisation du projet

Initialisez NovaTech dans votre répertoire de projet :

1cd my-project
2nova init
3# ✓ Detected: Next.js 14
4# ✓ Created nova.config.ts
5# ✓ Ready to deploy

Étape 4 : Déploiement

Déployez votre application en production :

1nova deploy --prod
2# ▶ Building... done (12s)
3# ▶ Deploying to 47 edge nodes...
4# ✓ Live at https://my-project.novatech.app
5#
6# Deploy ID: dep_7x9k2m
7# Region: global (47 nodes)
8# Build time: 12.3s

Configuration

Le fichier nova.config.ts vous permet de personnaliser le comportement de votre déploiement.

1// nova.config.ts
2import { defineConfig } from "@novatech/cli";
3 
4export default defineConfig({
5 name: "my-project",
6 region: "auto",
7 scaling: {
8 min: 1,
9 max: 10,
10 predictive: true,
11 },
12 env: {
13 DATABASE_URL: { secret: true },
14 NEXT_PUBLIC_API: "https://api.example.com",
15 },
16});

Étapes suivantes

Configurer un domaine personnalisé
Activer l’auto-scaling
Configurer les variables d’environnement
Mettre en place le CI/CD
Dernière mise à jour : 14 fév. 2026Modifier cette page

Sur cette page

  • Pré-requis
  • Étape 1 : Installation du CLI
  • Étape 2 : Authentification
  • Étape 3 : Initialisation du projet
  • Étape 4 : Déploiement
  • Configuration
  • Étapes suivantes