Every piece of your infrastructure has a home somewhere: code in Git, deployments on servers, data in databases, metrics in a monitoring tool. The question is whether you manage all of that from one place — or from six browser tabs and a terminal.
That is what a good cloud dashboard is for. It puts your projects, applications, deployments, databases, and logs behind a single pane of glass, so managing infrastructure stops being a scavenger hunt. For teams without a dedicated DevOps engineer, a centralized developer dashboard is the difference between shipping this afternoon and shipping next week.
Getting started with NevTan Cloud Dashboard takes only a few minutes, and this guide walks you through all of it: signing in, navigating the interface, deploying your first application from a Git repository, adding a managed database, and keeping an eye on everything once it is live. By the end, you will be comfortable running your applications from one screen.
Table of Contents
1. What Is the NevTan Cloud Dashboard?
2. Dashboard Overview
3. How to Access the Dashboard
4. Understanding Dashboard Navigation
5. Creating Your First Project
6. Deploying Your First Application
7. Managing Applications
8. Adding Managed Databases
9. Environment Variables
10. Monitoring & Logs
11. Scaling Applications
12. Tips for First-Time Users
13. Why the Dashboard Makes Deployment Easier
14. Frequently Asked Questions
15. Final Thoughts
What Is the NevTan Cloud Dashboard?
The NevTan Cloud Dashboard is the web interface for NevTan Cloud — the control center where you deploy, manage, and monitor everything you run on the platform. NevTan describes its App Platform as an AWS-like cloud platform for deploying your applications, and the dashboard is how you actually operate it day to day.
In practical terms, the dashboard is where you:
Connect GitHub, GitLab, or Bitbucket repositories and trigger deployments from your code.
Organize applications into projects and manage development, staging, and production environments.
Review changes on their way to production, so releases stay controlled.
Provision and manage databases alongside the applications that use them.
Watch deployments, logs, and application behavior without leaving the interface.
If you have used a cloud application platform before, the mental model will feel familiar. If you have not, the good news is that the dashboard replaces most of what you would otherwise do over SSH and scattered config files. Centralized infrastructure management is the whole point.
Dashboard Overview
Before clicking anything, it helps to know what lives where. These are the main areas you will work in.
Dashboard area | What it is for |
|---|---|
Home | Your landing view — a summary of recent activity and quick access to your work |
Projects | Containers that group related applications, databases, and settings |
Applications | The services you have deployed, with their status and configuration |
Deployments | The release history — every build that has shipped, is shipping, or failed |
Databases | Managed database instances and their connection details |
Monitoring | Application health and resource usage at a glance |
Logs | Build and runtime output for debugging and verification |
Settings | Account, team access, and per-project configuration, including environment variables |
You will spend most of your time in three of these: Deployments (watching releases go out), Logs (confirming they went out cleanly), and Settings (adjusting configuration as your app evolves).
How to Access the Dashboard
Getting in takes a few minutes:
Create an account. Head to the NevTan Cloud App Platform page and sign up (internal link: App Platform — cloud.nevtan.com/cloud/app-platform).
Sign in. Log in with the credentials you created.
Verify your account. If a confirmation email arrives, click through it to activate your account.
Open the dashboard. After signing in, you land on the dashboard home — your starting point for everything that follows.
Complete initial setup. Connect your Git provider (GitHub, GitLab, or Bitbucket) when prompted. This one-time authorization allows the platform to deploy from your repositories.
Pro tip: connect your Git provider with an organization account rather than a personal one if you are setting this up for a team. It saves re-authorizing later when teammates join.
Understanding Dashboard Navigation
Navigation follows a hierarchy that mirrors how your infrastructure is actually organized: your account contains projects, projects contain applications and databases, and each application has its own deployments, logs, and settings.
Sidebar. The main navigation gives you one-click access to projects, deployments, databases, and settings from anywhere.
Projects. Open a project to see everything inside it — its applications, attached databases, and environments — in one view.
Deployments. Each application's deployment view lists releases in order, so you can see what shipped, when, and from which commit.
Databases. Database management lives beside your applications, so connection details are always a click away from the app that needs them.
Settings and resources. Settings are layered: account-level settings for you and your team, project-level settings for configuration, and per-application settings for environment variables and domains.
A useful habit from day one: think in projects, not applications. When you keep an app, its database, and its environments grouped in one project, everything you need during an incident is on one screen.
Creating Your First Project
Projects are the organizing unit of the dashboard, so this is your first real step.
Create the project. From the dashboard home, start a new project.
Name it clearly. Use something you will recognize in six months — the product or service name works better than test-project-3.
Select a repository. Choose the GitHub, GitLab, or Bitbucket repository that holds your application code.
Configure the basics. Review the detected settings for your application and adjust anything specific to your stack.
Set up environments. Decide which environments you need. A production environment is created for real traffic; adding a staging environment early gives you a safe place to test changes before they reach users.
That is the whole ceremony. The project now exists as a home for your application, its database, and its configuration.
Deploying Your First Application
This is the moment the dashboard exists for. NevTan's own promise is deploying applications in seconds from Git to production, and the workflow reflects that: your repository is the source of truth, and the platform handles the rest.
Connect your GitHub repository. If you did this during setup, the repository is already available. Otherwise, authorize the platform to access the repo you want to deploy — Next.js, Node.js, Python, or a Docker deployment all follow the same path.
Configure build settings. Confirm how the application should be built. For common frameworks, the defaults usually work; containerized apps build from your Dockerfile.
Set environment variables. Add any configuration your app needs — API keys, database URLs, feature flags — as environment variables before the first deploy, so the app boots correctly on the first try.
Watch the build. Trigger the deployment. The platform pulls your code and builds it automatically; you can follow progress from the deployment view.
Deploy. Once the build succeeds, the release ships to the platform's managed infrastructure. Changes can be reviewed on their way to production, which keeps releases deliberate rather than accidental.
Visit your live application. Your application is now serving over HTTPS. Open the URL, click around, and check the logs to confirm a clean start.
From here on, deployment is even simpler: push to your connected repository, and the platform takes each release from code to production. The dashboard becomes the place you watch and steer, rather than the place you do manual work.
Managing Applications
After the first deploy, the dashboard shifts from setup tool to daily driver. The management tasks you will actually perform:
Viewing deployments. The deployment history shows every release with its status and source commit — your first stop when someone asks what changed.
Updating applications. Push new code, and the platform builds and releases it. For deliberate changes outside the Git flow, updates are managed from the application's dashboard view.
Restarting applications. When an app misbehaves in a way a fresh start would fix, restart it from the dashboard instead of reaching for SSH.
Monitoring performance. Application health and behavior are visible from the monitoring view, covered in depth below.
Deployment history. Because every release is recorded, you can trace problems to the deployment that introduced them — which turns debugging from guesswork into a diff.
Adding Managed Databases
Very few real applications run without state. The dashboard lets you provision managed databases in the same place you manage the apps that use them — PostgreSQL and MySQL for relational data, MongoDB for document storage, Redis for caching and sessions. [confirm engine list against live product before publish]
What the managed model gives you:
Easy provisioning. Create a database from the dashboard in a few clicks and get connection details immediately — no server setup, no installation.
Automatic management. Operations, uptime, and reliability are the platform's job, consistent with how NevTan runs the rest of its infrastructure.
Secure connections. The platform's security features — encryption, key management, and access controls — apply to your data layer, and connection credentials live in environment variables rather than code.
Scaling. As your application grows, the database can grow with it instead of becoming the ceiling.
Practical workflow: provision the database inside the same project as the application, copy its connection string into the app's environment variables, and redeploy. Two minutes, and your app has production-grade persistence.
Environment Variables
Environment variables are how configuration and secrets reach your application without living in your repository. Database URLs, API keys, third-party tokens — anything that differs between environments or must stay private belongs here.
Adding them is straightforward: open the application's settings, add each variable as a key-value pair, and redeploy so the running app picks them up.
Three security practices worth adopting from day one:
Never commit secrets to code. A leaked repository should never mean leaked credentials. If a secret is in Git history, rotate it.
Use separate values per environment. Your staging database should not be your production database, and staging API keys should be sandbox keys.
Limit who can view and edit. The platform's access controls and audit logging exist for exactly this — configuration changes should be traceable to a person.
Monitoring & Logs
Deployment is not done when the build succeeds; it is done when you have confirmed the application is healthy. The dashboard gives you the tools for that confirmation.
Logs. Build logs tell you why a build failed; runtime logs tell you what your application is doing in production. Reading logs immediately after each deploy is the single best habit a new user can build.
Metrics. Resource usage and application behavior over time, so you can tell the difference between a busy day and a memory leak.
Health monitoring. A quick answer to the only question that matters at 9 a.m.: is everything up?
Troubleshooting. When something breaks, the combination of deployment history plus logs usually identifies the culprit: find the release where behavior changed, read its logs, fix, redeploy.
Underneath your monitoring, remember the division of labor: NevTan manages uptime, performance, and platform reliability. Your monitoring focus is your application's behavior — the part only you can fix.
Scaling Applications
Scaling is where dashboards traditionally get scary and this one deliberately does not. NevTan Cloud is built on scalable infrastructure, so growth is handled at the platform level rather than through capacity spreadsheets.
Performance under load. As traffic increases, the platform's infrastructure absorbs it — your role is watching the monitoring view, not provisioning servers.
Resource allocation. When an application genuinely needs more resources, that adjustment happens from the dashboard rather than a migration project.
High availability. Reliability is part of the platform's managed responsibility, which is precisely what you are paying a managed platform for.
The honest advice for a first-time user: do not pre-optimize. Deploy, watch your metrics for a week, and let real usage tell you whether scaling adjustments are needed at all.
Tips for First-Time Users
Organize by project. One product or service per project keeps applications, databases, and settings together where an incident responder can find them.
Treat secrets properly. Every credential goes in environment variables, never in code — and production values stay separate from staging.
Watch your deployments. Glance at the deployment view after every push. Catching a failed build in one minute beats discovering it from a user report.
Read logs after each deploy. Make post-deploy log reading a reflex. Most production surprises announce themselves in the first hundred log lines.
Keep repositories connected. The Git connection is the heart of the workflow — keep repositories connected and deploy from pushes rather than manual uploads, so your release history matches your commit history.
Use the support channels. Real humans answer — NevTan offers support from engineers and onboarding specialists over email and chat, so a ten-minute question does not have to become a two-hour forum search.
Why the NevTan Cloud Dashboard Makes Deployment Easier
Grounded in what NevTan itself emphasizes about the platform, the dashboard's advantages come down to four things:
Git-first workflow. Deployments start from GitHub, GitLab, or Bitbucket — the tools your team already uses — with releases moving from code to production through one connected flow.
Controlled releases. Changes can be reviewed and environments managed on the way to production, which gives small teams the release discipline of much larger ones.
Managed infrastructure underneath. Uptime, performance, and reliability are handled by the platform, so the dashboard is for steering — not firefighting.
Security and support built in. Encryption, key management, access controls, and audit logging are platform features, and human support is available when the dashboard alone is not enough.
Dashboard Features at a Glance
Dashboard feature | Purpose | Benefit |
|---|---|---|
Git integration | Connect GitHub, GitLab, or Bitbucket repositories | Deploy from the workflow your team already uses |
Deployments view | Track every release from build to production | Full release history; problems trace to specific deploys |
Change review | Review changes before they reach production | Deliberate, controlled releases |
Environment management | Separate dev, staging, and production | Test safely without touching real users |
Database management | Provision and manage databases beside your apps | Persistence without server administration |
Environment variables | Store configuration and secrets per application | Credentials stay out of your codebase |
Monitoring & logs | Watch health, resources, and output | Catch issues before your users do |
Team access controls | Manage who can see and change what | Audit-ready collaboration |
Frequently Asked Questions
What is the NevTan Cloud Dashboard?
The NevTan Cloud Dashboard is the web interface for NevTan Cloud, an AWS-like cloud platform for deploying applications. It is where you connect Git repositories, deploy applications, manage projects and environments, provision databases, and monitor everything you run on the platform.
Is the dashboard beginner-friendly?
Yes. If you can push code to GitHub, GitLab, or Bitbucket, you can deploy from the dashboard. The platform manages the infrastructure underneath, so first-time users are not expected to configure servers, networking, or scaling by hand.
Can I deploy Next.js applications from the dashboard?
Yes. Next.js apps deploy through the standard repository workflow: connect the repo, confirm build settings, and deploy. Node.js, Python, and other framework applications follow the same path.
Can I manage databases from the dashboard?
Yes. Managed databases are provisioned and managed from the dashboard alongside your applications, with connection details available for your environment variables.
How do I monitor deployments?
The deployments view shows every release and its status, while logs and monitoring show build output, runtime behavior, and application health. Checking both after each deploy is the recommended habit.
Does the dashboard support Docker?
Yes. Containerized applications deploy from your repository using your Dockerfile, following the same Git-based workflow as framework applications.
Can multiple team members access projects?
Yes. The platform includes access controls and audit logging, so teams can collaborate on projects with visibility into who changed what.
Where can I find deployment logs?
Each application's logs are available from its dashboard view: build logs for diagnosing failed builds, and runtime logs for watching the application in production.
Final Thoughts
Getting started with NevTan Cloud Dashboard is genuinely a first-afternoon task: create an account, connect a repository, deploy, attach a database, and read your first logs. Everything after that is repetition of a loop you already know — push code, watch the release, confirm health.
That is what a well-designed cloud dashboard buys you. Not fewer capabilities, but fewer places to look; not less control, but less ceremony. The infrastructure management that used to require a specialist becomes a sidebar.
The best next step is simply to do the walkthrough above with a real project. An hour in the dashboard will teach you more than any guide — this one included.



