Getting Started
Follow these steps to get up and running with Strongly.AI in under 10 minutes.
Step 1: Create Your Account
- Visit strongly.ai/signup
- Enter your email address and create a strong password
- Check your inbox for verification email and click the verification link
- Choose your plan:
- Individual: Perfect for developers and small projects
- Team: Collaboration features, shared resources
- Enterprise: Advanced governance, SSO, dedicated support
- Complete onboarding questionnaire (optional, helps customize your experience)
Step 2: Explore the Dashboard
After logging in, familiarize yourself with the main navigation:
Core Features:
- Apps: Deploy and manage containerized applications
- Workflows: Build visual automation pipelines
- Data Sources: Connect to databases and storage
- AI Gateway: Deploy and manage AI models
- Projects: Organize work and create development workspaces
- Marketplace: Deploy pre-built templates
Management & Tools:
- Platform: Kubernetes cluster management (admin)
- Governance: Policies and compliance
- FinOps: Cost tracking and optimization
- Settings: User management, teams, billing
- STAN: AI assistant (bottom-right icon)
Step 3: Deploy Your First Application
Let's deploy a simple Node.js application to get familiar with the platform:
Option A: Quick Start with Marketplace Template
- Click Marketplace in navigation
- Browse templates and select "React SPA" or "FastAPI Backend"
- Click Deploy
- Configure app name and environment variables
- Click Deploy Application
- Wait 2-3 minutes for build and deployment
- Click View App to see your running application
Option B: Deploy Your Own Code
Prerequisites
- Your application code in a directory
- A
Dockerfilein the project root - A
strongly.manifest.yamlconfiguration file (see AI Applications section)
# 1. Create a simple strongly.manifest.yaml
cat > strongly.manifest.yaml << 'EOF'
version: "1.0"
type: nodejs
name: my-first-app
description: My first Strongly.AI application
ports:
- port: 3000
name: http
expose: true
env:
- name: NODE_ENV
value: "production"
resources:
cpu_request: "200m"
memory_request: "512Mi"
EOF
# 2. Package your application
zip -r myapp.zip . -x "node_modules/*" ".git/*"
# 3. Upload via Dashboard
# - Go to Apps → Deploy App
# - Upload myapp.zip
# - Select "Development" environment
# - Click Deploy
Step 4: Set Up Your First Data Source (Optional)
- Go to Data Sources → Create Data Source
- Select PostgreSQL (or any database you use)
- Enter connection details (host, port, database, username, password)
- Click Test Connection to verify
- Click Create Data Source
- This data source is now available to all your apps via
STRONGLY_SERVICES
Step 5: Create a Simple Workflow (Optional)
- Click Workflows → Create Workflow
- Drag a Schedule trigger onto the canvas (runs every N minutes)
- Add a REST API node to fetch data from an endpoint
- Connect the nodes by dragging from output to input
- Click Test Run to see it execute
- Click Deploy when ready
Next Steps
For Developers
- Review the AI Applications section for detailed deployment options
- Explore Workflows for automation
- Set up Projects & Workspaces for development
- Connect to AI Gateway for LLM access
For Admins
- Configure User Management and teams
- Set up Governance policies
- Monitor costs with FinOps
- Explore Platform for Kubernetes access
Need Help?
Click the STAN icon (bottom-right) for AI-powered assistance, or contact support@strongly.ai.