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: 4 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
GITHUB_USERNAME="YourGitHubUsername"  # 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

# ==========================
# ๐Ÿ—๏ธ SETTING UP DJANGO PROJECT
# ==========================
echo "โœจ Creating project directory: $PROJECT_NAME..."
mkdir $PROJECT_NAME && cd $PROJECT_NAME

echo "๐Ÿ Creating virtual environment..."
$PYTHON_VERSION -m venv $VENV_NAME

echo "๐Ÿง™โ€โ™‚๏ธ Activating virtual environment..."
source $VENV_NAME/bin/activate  # On Windows use: $VENV_NAME\Scripts\activate

echo "๐Ÿ“ฆ Installing Django..."
pip install django

echo "๐Ÿš€ Starting Django project..."
django-admin startproject myproject .

# ==========================
# ๐Ÿ”ฅ INITIALIZING GIT
# ==========================
echo "๐ŸŽฉ Initializing Git repository..."
git init

echo "โšก Creating .gitignore..."
cat <<EOL > .gitignore
$VENV_NAME/
__pycache__/
db.sqlite3
.env
EOL

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

echo "๐Ÿ–Š๏ธ Committing changes..."
git commit -m "Initial commit - A wizard is never late!"

# ==========================
# ๐Ÿ•ธ๏ธ LINKING TO GITHUB
# ==========================
echo "๐Ÿ”— Adding remote repository..."
git remote add origin $GITHUB_REPO

echo "๐Ÿ“ก Verifying remote link..."
git remote -v

echo "๐ŸŒฟ Renaming branch to $BRANCH_NAME..."
git branch -M $BRANCH_NAME

echo "๐Ÿš€ Pushing code to GitHub..."
git push -u origin $BRANCH_NAME

# ==========================
# ๐ŸŽ‰ 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! ๐Ÿง™โ€โ™‚๏ธ"