Posts

Showing posts from February, 2023

php version change

 https://ostechnix.com/how-to-switch-between-multiple-php-versions-in-ubuntu/

how to run django project in vs code

Image
Django Tutorial in Visual Studio Code Django is a high-level Python framework designed for rapid, secure, and scalable web development. Django includes rich support for URL routing, page templates, and working with data. In this Django tutorial, you create a simple Django app with three pages that use a common base template. You create this app in the context of Visual Studio Code in order to understand how to work with Django in the VS Code terminal, editor, and debugger. This tutorial does not explore various details about Django itself, such as working with data models and creating an administrative interface. For guidance on those aspects, refer to the Django documentation links at the end of this tutorial. The completed code project from this Django tutorial can be found on GitHub:  python-sample-vscode-django-tutorial . If you have any problems, you can search for answers or ask a question on the  Python extension Discussions Q&A . Prerequisites To successfully compl...