A simple django project which should be exended to future website as needed.
Chocolatey (One click Install file avaliable) [installChocolatey.bat] Python 3.8.5 (One click Install file avaliable) [1 install.bat]
Double click on "installChocolatey.bat"
Right click on "1 install.bat" and run as Administrator
Double click on "2 setup.bat"
Fill all credentials in the Notepad that pops up.
Give the details for superuser to be created.
Double click on "3 run.bat"
open browser and goto http://127.0.0.1:8000
Add your apps to the project and use them.
open src/settings.py in your editor.
under INSTALLED_APPS list add your app name with qoutes and ending with comma
INSTALLED_APPS = [
...
'myapp',
...
]
open src/urls.py in your editor.
from myapp import urls
urlpatterns = [
...
url(r'^myapp/', include('myapp.urls')),
...
]
Enjoy :)