Django for Beginners

This web development framework is one of the most used for software development in general. You can develop server-side applications on the web through this Python framework, and can also support a front-end framework.

If you are a developer who wants a trusted framework for his websites and web applications, Django is the deal. With its efficiency, big companies also used Django. Here are the following:

  1. Pinterest
  2. Spotify
  3. Udemy
  4. Dropbox
  5. Instagram
  6. National Geographic

How to Create a Django Project

All the installation options they have are available on their official website. After installing the framework, type this to generate a new project.

Django-admin startproject work

The “work” here is just an example and you can use another name for this area. A file structure will appear. An inner folder with the same name (work) will be located in your main project folder. An SQLite file and a Python file will also be located inside.

While setting this up, you might get an unapplied migration warning but this should not be a problem. Once you get your server’s URL, open it in a browser to see if your Django project is successfully running.

Leave a Reply

Your email address will not be published. Required fields are marked *

Previous post Tips for Creating Basic and Advanced Shapes Using a Pure CSS Website
Next post The JavaScript Data Types