Skip to content

A simple django with ssl, project which should be exended to future website as needed.

Notifications You must be signed in to change notification settings

rshnGhost/django-quick

Repository files navigation

Django Quick

GitHub code size in bytes GitHub branch checks state powerShell

A simple django with ssl, project which should be exended to future website as needed.

Requirements

Python 3.11.1

Installation (Windows)

Double click on install.bat (should have internet connection)

Setup (Windows)

Double click on setup.bat (should have internet connection)

Fill all credentials in the Notepad that pops up.

Give the details for superuser to be created.

Usage (Windows)

Double click on run.bat

open browser and goto https://127.0.0.1:8000/

Usage (Windows)[powershell] (obsolete)

Get-ExecutionPolicy
Set-ExecutionPolicy Bypass -Scope Process
iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/rshnGhost/django-quick/django-4.1.4/windowCmd/webInstall.ps1'))
iwr -useb https://raw.githubusercontent.com/rshnGhost/django-quick/django-4.1.4/windowCmd/webInstall.ps1 | iex
iex ((New-Object System.Net.WebClient).DownloadString('https://git.io/JRqZX'))

Using PyPI

Tests (ubuntu) Tests (windows)

pip install django-space
django-space

Credential

Username

django

Password

space

Addons

open src/urls.py in your editor.

import your app urls

from myapp import urls

include your app urls

urlpatterns = [

...

url(r'^myapp/', include('myapp.urls')),

...

]

Enjoy :)