Adım adım sonuca doğru ilerlemeye devam edelim ve konsol üzerinden "mysite" isimli klasörümüze girelim. Konsol üzerinden şu komutu veriyoruz:

python manage.py runserver

Tataaaa. İşte sonuç...:

Validating models...
0 errors found.

Django version 1.0, using settings 'mysite.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.



Validating models...
0 errors found.

Django version 1.0, using settings 'mysite.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.


Web browserımızı açalım ve adres satırına < http://127.0.0.1:8000/ > yazalım.

Hatasız bir şekilde projemizin çalıştığını görüyoruz.

It worked!
Congratulations on your first Django-powered page.

Of course, you haven't actually done any work yet. Here's what to do next:

* If you plan to use a database, edit the DATABASES setting in mysite/settings.py.
* Start your first app by running python mysite/manage.py startapp [appname].

You're seeing this message because you have DEBUG = True in your Django settings file and you haven't configured any URLs. Get to work!


It worked!
Congratulations on your first Django-powered page.

Of course, you haven't actually done any work yet. Here's what to do next:

It worked!
Congratulations on your first Django-powered page.

Of course, you haven't actually done any work yet. Here's what to do next:

* If you plan to use a database, edit the DATABASES setting in mysite/settings.py.
* Start your first app by running python mysite/manage.py startapp [appname].

You're seeing this message because you have DEBUG = True in your Django settings file and you haven't configured any URLs. Get to work!




Devam Edecek :)