A simple django with ssl, project which should be exended to future website as needed.
Python 3.11.1
Double click on install.bat (should have internet connection)
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.
Double click on run.bat
open browser and goto https://127.0.0.1:8000/
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'))
pip install django-space
django-space
django
space
open src/urls.py in your editor.
from myapp import urls
urlpatterns = [
...
url(r'^myapp/', include('myapp.urls')),
...
]
Enjoy :)