SmartStack 2.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package SmartStack --version 2.1.0
                    
NuGet\Install-Package SmartStack -Version 2.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SmartStack" Version="2.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SmartStack" Version="2.1.0" />
                    
Directory.Packages.props
<PackageReference Include="SmartStack" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SmartStack --version 2.1.0
                    
#r "nuget: SmartStack, 2.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SmartStack@2.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SmartStack&version=2.1.0
                    
Install as a Cake Addin
#tool nuget:?package=SmartStack&version=2.1.0
                    
Install as a Cake Tool

SmartStack

Application de gestion multi-contexte avec authentification et navigation dynamique.

Tech Stack

Composant Technologie
Backend .NET 10, EF Core 10
Frontend React 19, TypeScript, Vite
Database SQL Server (LocalDB)
Auth JWT + BCrypt

Getting Started

Prerequisites

  • .NET 10 SDK
  • Node.js 20+
  • SQL Server LocalDB

Installation

# Clone et navigation
cd SmartStack.app/features/Initialisation-de-la-stack

# Restore packages
dotnet restore
cd web/smartstack-web && npm install && cd ../..

# Les migrations sont appliquées automatiquement au démarrage
# Pour désactiver, modifier appsettings.json: "SmartStack.AutoMigrate": false

Lancement

# Terminal 1 - API (port 5142)
cd src/SmartStack.Api
dotnet run --environment Development

# Terminal 2 - Frontend (port 5173)
cd web/smartstack-web
npm run dev

Compte Administrateur Local

Au premier lancement, un compte administrateur est automatiquement cree avec un mot de passe aleatoire.

Recuperer le mot de passe

Option 1: Script PowerShell (recommande)

.\.scripts\get-admin-password.ps1

Option 2: Logs au demarrage

Le mot de passe est affiche dans les logs au demarrage de l'API :

[WRN] ═══════════════════════════════════════════════════════════════
[WRN]   LOCAL ADMINISTRATOR ACCOUNT CREATED
[WRN]   ─────────────────────────────────────────────────────────────
[WRN]   Email:    local.admin@smartstack.local
[WRN]   Password: <MOT_DE_PASSE_GENERE>
[WRN]   ─────────────────────────────────────────────────────────────
[WRN]   SAVE THIS PASSWORD NOW - IT WILL NOT BE SHOWN AGAIN!
[WRN] ═══════════════════════════════════════════════════════════════

Reset du mot de passe

Si vous avez perdu le mot de passe, reinitialiser la base de donnees :

# Supprimer et recreer la DB
dotnet ef database drop -f -p src/SmartStack.Infrastructure -s src/SmartStack.Api


# Relancer l'API pour voir le nouveau mot de passe
cd src/SmartStack.Api
dotnet run --environment Development

Structure du Projet

SmartStack.sln
├── src/
│   ├── SmartStack.Domain         # Entites metier
│   ├── SmartStack.Application    # CQRS, interfaces
│   ├── SmartStack.Infrastructure # EF Core, services
│   └── SmartStack.Api            # REST API
└── web/
    └── smartstack-web            # React frontend

Commandes Utiles

# Build
dotnet build

# Stop API (Windows)
taskkill /F /IM SmartStack.Api.exe
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.15.0-preview.597 0 2/16/2026
2.14.0 27 2/14/2026
2.14.0-preview.584 28 2/14/2026
2.13.0 37 2/14/2026
2.12.0 78 2/11/2026
2.11.0 90 2/10/2026
2.10.0 74 2/10/2026
2.9.0 72 2/10/2026
2.6.0 72 2/10/2026
2.6.0-preview.540 32 2/10/2026
2.6.0-preview.534 30 2/10/2026
2.5.0 72 2/10/2026
2.5.0-preview.532 35 2/10/2026
2.4.0 81 2/9/2026
2.3.0 79 2/6/2026
2.3.0-preview.469 39 2/6/2026
2.2.1 83 2/5/2026
2.1.0 87 2/3/2026
2.1.0-preview.429 44 2/3/2026
2.0.0 93 1/29/2026
Loading failed