HomeDocumentation
Documentation

NiveeHub Docs

Learn how to set up, configure, and use NiveeHub for your team.

Quick Start

Get up and running with NiveeHub in minutes. Start by creating an account and pushing your first commit.

1. Create an account

Head to /register and sign up with your username, email, and password. After registration, verify your email.

2. Create a repository

From your dashboard, click "New Repository" and give it a name.

3. Push your code

bash
# Initialize your local repo
git init
git add .
git commit -m "Initial commit"

# Add NiveeHub remote
git remote add origin https://niveehub.com/username/repo.git
git push -u origin main

Explore the docs