Skip to content

Instantly share code, notes, and snippets.

View neerajadhav's full-sized avatar
🎯
Focus

Adhav Neeraj Sahebrao neerajadhav

🎯
Focus
View GitHub Profile
@omganeshdahale
omganeshdahale / django_start_project.sh
Created August 25, 2021 05:20
Bash script to start django project
#!/bin/bash
EMAIL_USER=""
EMAIL_PASS=""
read -p "enter project name: " project_name
mkdir "$1/$project_name"
cd "$1/$project_name"