Posts

Coding Django in VS Code Editor

Image
DJANGO PROJECTS IN VISUAL STUDIO CODE Visual Studio Code  is a free source code editor developed my Microsoft. It feels much more  lightweight  than traditional IDEs, yet its extensions make it versatile enough to handle just about any type of development work, including  Python  and the  Django web framework . This guide shows how to use Visual Studio Code for Django projects. Installation Make sure the  latest version of Visual Studio Code  is installed. Then, install the following (free) extensions: Python  (published by Microsoft) – for full Python language support Django Template  – for template file source highlighting Django Snippets  – for common Django code Alternatively, install  Djaniero – Django Snippets  if you prefer Reload Visual Studio Code after installation.   Django Template extension Editing Code The VS Code Python editor is really first-class. The syntax highli...