An open API service indexing awesome lists of open source software.

https://github.com/mr-destructive/django-quick-setup-script


https://github.com/mr-destructive/django-quick-setup-script

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

## Django Quick Setup Script

- Make sure you have a running [python](https://www.python.org/downloads/) setup.
- Also, [pip](https://pip.pypa.io/en/stable/) should be properly installed and configured.
- You can now run the scripts according to your Operating System:
- **For Windows**

```
mkdir %1
cd %1
pip install virtualenv
virtualenv env
call env\Scripts\activate

pip install django
django-admin startproject %1 .
cls
```
- **For Linux and macOS**

```
#!/usr/bin/env bash

mkdir $1
cd $1
pip install virtualenv
virtualenv env
source env\bin\activate

pip install django
django-admin startproject $1 .
clear
```