Setting up Django and Git

By Cloud Quest Guide

Learn how to efficiently set up Django with Git for seamless version control and project management in your web development journey.

Estimated reading time: 7 minutes

Edit on Github
Table of Contents

Setting Up a GitHub Repository for Your Django Project

A Magical Adventure with VS Code

๐ŸŽฉโœจ Welcome, young sorcerer, to the mystical art of Django Deployment! Before your project can roam the digital realm freely, it must be contained in the enchanted vaults of GitHub. And who better to assist you than the powerful IDE known as VS Code?

So, grab your wand (ahem, keyboard) and letโ€™s begin this magical journey! ๐Ÿง™โ€โ™‚๏ธ๐Ÿ

Step 1: Summon Your Terminal (Command Line Magic!)

First, navigate to your Django project directory. If you donโ€™t have one yet, conjure it with:

mkdir django-magic && cd django-magic
python -m venv venv
source venv/bin/activate  # On Windows, use: venv\Scripts\activate
pip install django
django-admin startproject myproject .

Poof! Your Django project is now alive! ๐ŸŽ‡

Step 2: Initialize the Git Spell

In your terminal (or the VS Code integrated terminal), whisper the sacred words to initialize Git in your project folder:

git init

Your project is now under the watchful eye of Git, the guardian of version control. ๐Ÿฐโœจ

Step 3: Create a .gitignore Scroll

Before pushing your secrets to GitHub, you must ward off unnecessary files from being tracked. Create a .gitignore file and add these forbidden artifacts:

# .gitignore
venv/
__pycache__/
db.sqlite3
.env

This prevents your virtual environment and secret files from escaping into the wild. Trust me, you donโ€™t want goblins (or hackers) meddling with your .env file. ๐Ÿดโ€โ˜ ๏ธ

Step 4: Summon GitHub and Create a Repository

Now, visit GitHub and create a new repository. Give it a name, like Django-Magic, and DO NOT initialize it with a README (weโ€™ll do that ourselves).

Copy the provided repository linkโ€” youโ€™ll need it in a moment! ๐Ÿ”—

Step 5: Link Your Project to GitHub

Now, cast the binding spell to connect your local project to the remote repository:

git remote add origin https://github.com/YOUR_USERNAME/Django-Magic.git

Check if the link is established:

git remote -v

Your project is now tethered to GitHub, ready to be uploaded into the sky! ๐ŸŒฉ๏ธโ˜๏ธ

Step 6: First Commit โ€“ Engraving the Scrolls

Itโ€™s time to record your progress and push it into the vast cosmos of GitHub!

git add .
git commit -m "Initial commit - A wizard is never late!"

Your work is now sealed in the Git Grimoire. ๐Ÿ“œโœจ

Step 7: Pushing Your Magic to GitHub

With your spells in place, send your Django project to GitHub:

git branch -M main
git push -u origin main

๐ŸŽ† BOOM! Your code now floats in the ethereal GitHub realm, safe and accessible from anywhere in the multiverse.

Final Step: Open Your Project in VS Code

To ensure everything is set up properly, open VS Code and use the magic command:

code .

From here, you can use VS Codeโ€™s source control panel (the little Git icon on the sidebar) to monitor, commit, and push changes with ease.

Congratulations, Sorcerer! ๐ŸŽฉ๐Ÿ”ฎ

Youโ€™ve successfully summoned, bound, and pushed your Django project to GitHub. Now, your code is ready for collaboration, deployment, and world domination (or at least, a solid website).

May the Git Force be with you! ๐Ÿš€๐Ÿ”ฅ

Need help with the next step, like deploying this mystical project? Ask away, and we shall embark on another adventure! ๐Ÿฐโœจ

#!/bin/bash

# ==========================
# ๐Ÿ”ฎ CONFIGURATION SECTION ๐Ÿ”ฎ
# ==========================
PROJECT_NAME="django-magic"  # Change this to your project name
APP_NAME="magic"  # Change this to your Django app name
GITHUB_USERNAME="bamr87"  # Your GitHub username
GITHUB_REPO="https://github.com/$GITHUB_USERNAME/$PROJECT_NAME.git"  # GitHub repository URL
PYTHON_VERSION="python3"  # Change to "python" if using Python 2 (not recommended)
BRANCH_NAME="main"  # Default branch
VENV_NAME="venv"  # Virtual environment name


# ==========================
# ๐Ÿš€ NAVIGATION SECTION ๐Ÿš€
# ==========================
echo "๐Ÿš€ Navigating to ~/github directory..."<end_o
cd ~/github || error_exit "Failed to navigate to ~/github directory."

# ==========================
# ๐Ÿš€ HELPER FUNCTIONS
# ==========================
error_exit() {
    echo "โŒ Error: $1"
    exit 1
}

check_command() {
    command -v "$1" >/dev/null 2>&1 || error_exit "$1 is not installed. Please install it first."
}

# ==========================
# ๐Ÿ”ฅ SETTING UP DJANGO PROJECT
# ==========================
echo "โœจ Ensuring project directory exists: $PROJECT_NAME..."
mkdir -p $PROJECT_NAME && cd $PROJECT_NAME || error_exit "Failed to navigate to project directory."

echo "๐Ÿ Checking virtual environment..."
if [ ! -d "$VENV_NAME" ]; then
    check_command $PYTHON_VERSION
    echo "๐Ÿš€ Creating virtual environment..."
    $PYTHON_VERSION -m venv $VENV_NAME || error_exit "Failed to create virtual environment."
else
    echo "โœ… Virtual environment already exists."
fi

echo "๐Ÿง™โ€โ™‚๏ธ Activating virtual environment..."
source $VENV_NAME/bin/activate || error_exit "Failed to activate virtual environment."

echo "๐Ÿ“ฆ Checking Django installation..."
if ! python -c "import django" 2>/dev/null; then
    echo "๐Ÿš€ Installing Django..."
    pip install django || error_exit "Failed to install Django."
else
    echo "โœ… Django is already installed."
fi

if [ ! -d $PROJECT_NAME ]; then
    echo "๐Ÿš€ Starting Django project..."
    django-admin startproject $APP_NAME . || error_exit "Failed to start Django project."
else
    echo "โœ… Django project already exists."
fi

# ==========================
# ๐Ÿ”ฅ INITIALIZING GIT
# ==========================
if [ ! -d ".git" ]; then
    echo "๐ŸŽฉ Initializing Git repository..."
    git init || error_exit "Failed to initialize Git repository."
else
    echo "โœ… Git repository already initialized."
fi

echo "โšก Ensuring .gitignore exists..."
cat <<EOL > .gitignore
$VENV_NAME/
__pycache__/
db.sqlite3
.env
EOL
echo "โœ… .gitignore updated."

echo "๐Ÿ“œ Adding files to Git..."
git add . || error_exit "Failed to add files to Git."

if ! git rev-parse HEAD >/dev/null 2>&1; then
    echo "๐Ÿ–Š๏ธ Making initial commit..."
    git commit -m "Initial commit - A wizard is never late!" || error_exit "Failed to commit changes."
else
    echo "โœ… Changes are already committed."
fi

# ==========================
# ๐Ÿ•ธ๏ธ CREATING GITHUB REPO (AUTOMATIC)
# ==========================
check_command gh
echo "๐Ÿ”— Checking if repository exists on GitHub..."
if ! gh repo view $GITHUB_USERNAME/$PROJECT_NAME >/dev/null 2>&1; then
    echo "โšก Repository does not exist. Creating on GitHub..."
    gh repo create $GITHUB_USERNAME/$PROJECT_NAME --public --source=. --remote=origin || error_exit "Failed to create GitHub repository."
else
    echo "โœ… Repository already exists on GitHub."
fi

# ==========================
# ๐Ÿ•ธ๏ธ LINKING TO GITHUB
# ==========================
if ! git remote get-url origin >/dev/null 2>&1; then
    echo "๐Ÿ”— Adding remote repository..."
    git remote add origin $GITHUB_REPO || error_exit "Failed to add GitHub remote."
else
    echo "โœ… Remote repository already set."
fi

echo "๐Ÿ“ก Verifying remote link..."
git remote -v || error_exit "Failed to verify remote link."

if ! git rev-parse --abbrev-ref HEAD | grep -q "^$BRANCH_NAME$"; then
    echo "๐ŸŒฟ Renaming branch to $BRANCH_NAME..."
    git branch -M $BRANCH_NAME || error_exit "Failed to rename branch."
else
    echo "โœ… Branch is already set to $BRANCH_NAME."
fi

echo "๐Ÿš€ Pushing code to GitHub..."
git push -u origin $BRANCH_NAME || echo "โš ๏ธ Failed to push code. Make sure you are authenticated with GitHub."

# ==========================
# ๐ŸŽ‰ FINAL MESSAGE
# ==========================
echo "โœจ All done! Your Django project is now safely stored in GitHub! ๐Ÿš€"
echo "๐ŸŽฉ To start working on your project, use:"
echo "    cd $PROJECT_NAME && source $VENV_NAME/bin/activate && code ."
echo "๐Ÿ› ๏ธ Happy coding, sorcerer! ๐Ÿง™โ€โ™‚๏ธ"