0% found this document useful (0 votes)
14 views1 page

Thirdproject

The document outlines the process of setting up a Django project named 'templateproject' within a directory called 'thirdproject'. It includes commands for starting the server, creating an application called 'templateapp', and notes that there are 18 unapplied migrations that need to be addressed for proper functionality. The server is successfully started and responds to HTTP requests, although it encounters a 404 error for a missing favicon.

Uploaded by

lokeshbalu2110
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views1 page

Thirdproject

The document outlines the process of setting up a Django project named 'templateproject' within a directory called 'thirdproject'. It includes commands for starting the server, creating an application called 'templateapp', and notes that there are 18 unapplied migrations that need to be addressed for proper functionality. The server is successfully started and responds to HTTP requests, although it encounters a 404 error for a missing favicon.

Uploaded by

lokeshbalu2110
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

thirdproject

Microsoft Windows [Version 10.0.22631.3374]


(c) Microsoft Corporation. All rights reserved.

C:\Users\lokesh>cd..

C:\Users>cd..

C:\>cd thirdproject

C:\thirdproject>django-admin startproject templateproject

C:\thirdproject>cd templateproject

C:\thirdproject\templateproject>python manage.py runserver


Watching for file changes with StatReloader
Performing system checks...

System check identified no issues (0 silenced).

You have 18 unapplied migration(s). Your project may not work properly until you
apply the migrations for app(s): admin, auth, contenttypes, sessions.
Run 'python manage.py migrate' to apply them.
April 04, 2024 - 12:18:39
Django version 5.0.3, using settings 'templateproject.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.

[04/Apr/2024 12:19:02] "GET / HTTP/1.1" 200 10629


Not Found: /favicon.ico
[04/Apr/2024 12:19:04] "GET /favicon.ico HTTP/1.1" 404 2119

C:\thirdproject\templateproject>python manage.py startapp templateapp

C:\thirdproject\templateproject>python manage.py runserver


Watching for file changes with StatReloader
Performing system checks...

System check identified no issues (0 silenced).

You have 18 unapplied migration(s). Your project may not work properly until you
apply the migrations for app(s): admin, auth, contenttypes, sessions.
Run 'python manage.py migrate' to apply them.
April 04, 2024 - 12:20:18
Django version 5.0.3, using settings 'templateproject.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.

[04/Apr/2024 12:20:38] "GET / HTTP/1.1" 200 10629

You might also like