Building Your First Django App

Django makes it easy to build robust web applications quickly. In this guide we walk through creating a project from scratch.

Getting Started

pip install django
django-admin startproject myproject

Creating an App

python manage.py startapp blog

Conclusion

You now have the foundations to keep building. Happy coding!