Day 10: Django Blog App part 4 || Blog Pagination & Fetch Api || Django framework workshop

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ก.ย. 2024
  • This is an unedited recording of a Django framework workshop training session. 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 10 of our training and it talks about the following:
    1. Pagination
    2. Fetch Api concept
    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 #ProgrammingTutorial #Coding #PythonTutorial #django #DjangoTraining #PythonDjango #VirtualEnvironment #DjangoProject #DjangoApp #DjangoDevelopment #DjangoTutorial #WebDevelopment #Programming #Coding #WebDevelopmentTutorial #FullStackDevelopment #FrontendDevelopment #BackendDevelopment #DjangoTemplates #StaticFilesInDjango #DjangoURLRouting #CSSTutorial #HTMLTutorial #JavaScriptTutorial #LearnToCode #djangoblog #TechEducation #ProgrammingBasics #WebAppDevelopment #TechTutorials #DevCommunity #SoftwareDevelopment #CodeWithMe #WebDesign #TechTrends #DjangoTips #DjangoForBeginners #CodingForBeginners #trending #trendingshorts #trendingvideo #trendingshortsvideo #fetchapi
    ***********************************************************************************************
    🌐 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 หลายเดือนก่อน +1

    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
    #access python shell to interact with database.
    python manage.py shell