Day 5: Working with Django Models & Relationships || Django framework workshop

Поделиться
HTML-код
  • Опубликовано: 5 сен 2024
  • This is an unedited recording of a session for the Django framework workshop training. In case the pace is too slow, adjust the video speed from the settings icon, then playback speed and adjust that. For any questions and or clarifications, drop them in the comment section. This is day 5 of our training and it talks about the following:
    1. Database Design
    2. Model Field Types
    3. Model Relationships
    4. Database Migrations
    5. Django admin page
    In the past and future sessions, we advance on the following topics.
    1. Python fundamentals
    2. Starting and managing Django applications
    3. Views: Handling user requests.
    4. URLs: Mastering navigation
    5. Templates: Designing dynamic web pages
    6. Static Files: integrating CSS, JavaScript, and images into the Django project
    7. Django Admin - CRUD operations from the admin dashboard
    8. Sending Emails: Email server configurations
    9. Building a Blog: Creating a fully functional blog app
    10. Authentication: Secure your web application
    11. Dockerizing Django App: Containerize Django application
    12. GitHub: Introduction to Github
    13. Django Deployment: Taking your creation live for real-world impact
    💬 Got questions? Leave them in the comments below, and we'll be happy to help!
    👍 If you find this video helpful, don't forget to like, share, and subscribe for more tutorials!
    #djangoadmin #djangomodels #djangomigrations #databasedesign #modelrelationships #PythonProgramming #PythonInstallation #VSCodetutorial #PythonForBeginners #PythonBasics #PythonArithmetic #PythonDataTypes #PythonLists #LearnPython #ProgrammingTutorial #Coding #PythonTutorial #PythonSetup #django #DjangoTraining #PythonDjango #VirtualEnvironment #DjangoProject #DjangoApp #DjangoDevelopment #DjangoTutorial #WebDevelopment #Programming #Coding #WebDevelopmentTutorial #FullStackDevelopment #FrontendDevelopment #BackendDevelopment #PythonWebFramework #DjangoFramework #DjangoTemplates #StaticFilesInDjango #DjangoURLRouting #CSSTutorial #HTMLTutorial #JavaScriptTutorial #LearnToCode #CodeNewbie #TechEducation #ProgrammingBasics #WebAppDevelopment #TechTutorials #DevCommunity #SoftwareDevelopment #CodeWithMe #WebDesign #TechTrends #PythonTips #DjangoTips #DjangoForBeginners #CodingForBeginners #trending #trendingshorts #trendingvideo #trendingshortsvideo
    ***********************************************************************************************
    🌐 Ready to elevate your web development game? Need domain registration or expert technical support? Look no further! 🚀 Contact us today at admin@dtechnologys.com or dial +254-717-828-927.
    Get A hosting package: dtechnologys.c...
    At Dynamic Technologies, we offer a comprehensive range of services to fuel your digital success:
    1. Professional Web Development 🖥️
    2. Domain Registration and Hosting Services 🌐
    3. Expert Technical Support in Web Deployment and Management 🛠️
    4. General IT Consultancy 🤝
    5. Mentorship Programs in IT 🌟
    6. Tailored Web Development Training 📚
    7. Database Training and Optimization 📊
    Visit our website at dtechnologys.com for more info! Let's make your digital dreams a reality! 💻 #WebDevelopment #DomainRegistration #TechSupport #ITConsultancy 🌟

Комментарии • 1

  • @dtechnologieske
    @dtechnologieske  2 месяца назад

    See the commands used in this and previous trainings. Like,subscribe, share the video and drop your thoughts in the comment section.
    # Create virtual environment
    python3 -m venv venv
    # Activate virtual environment
    # For Windows
    venv\Scripts\activate
    # For Linux/Mac OS
    source venv/bin/activate
    # Create a Django project
    django-admin startproject projectname
    # Create a Django app
    python manage.py startapp appname
    # Start Django server
    python manage.py runserver
    #makemigrations
    python manage.py makemigrations
    #migrate
    python manage.py migrate
    #create super user
    python manage.py createsuperuser