<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Olaoye kunle</title>
    <description>The latest articles on DEV Community by Olaoye kunle (@kunle1984).</description>
    <link>https://dev.to/kunle1984</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1126635%2F9a65ee1d-07c2-4675-879f-b48d09043cf6.jpeg</url>
      <title>DEV Community: Olaoye kunle</title>
      <link>https://dev.to/kunle1984</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kunle1984"/>
    <language>en</language>
    <item>
      <title>SETTING UP DJANGO PROJECT</title>
      <dc:creator>Olaoye kunle</dc:creator>
      <pubDate>Fri, 25 Aug 2023 17:37:14 +0000</pubDate>
      <link>https://dev.to/kunle1984/setting-up-django-project-259i</link>
      <guid>https://dev.to/kunle1984/setting-up-django-project-259i</guid>
      <description>&lt;p&gt;This tutorial is meant for beginners or if you want have a quick view on how to set up &lt;a href="https://www.djangoproject.com/"&gt;Django&lt;/a&gt; project&lt;br&gt;
In this tutorial, I will explain in details step by step on  how to get started with django by creating a django project.  There are two important installations you need before you can set up Django on your local device.  I will split the tutorial into three sections.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Python installation&lt;/li&gt;
&lt;li&gt;Visual studio IDE installation&lt;/li&gt;
&lt;li&gt;Django  setup&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  1. PYTHON INSTALLATION
&lt;/h2&gt;

&lt;p&gt;If you have installed python on your local device you can skip this process.  If not visit  &lt;a href="https://www.python.org/downloads/"&gt;python download&lt;/a&gt; to download the latest version for your operating system. Click on download to download the latest version of python. After download, run the .exe file to install it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--qi31K7IW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1gru6o7iiga2e56yhiu6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--qi31K7IW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1gru6o7iiga2e56yhiu6.png" alt="Image description" width="800" height="407"&gt;&lt;/a&gt;&lt;br&gt;
Now you have the latest version of python install on your system but there is still one more thing to do before you can access it on the terminal.&lt;/p&gt;

&lt;p&gt;Follow these steps to setup your environment variable&lt;br&gt;
a. Type ‘’env’’ on the window search, click on “edit  the system environmental variable”&lt;/p&gt;

&lt;p&gt;b. Click on edit variable&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--sFpz7Yvp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zfts89y5qw7snuqq8uo7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--sFpz7Yvp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zfts89y5qw7snuqq8uo7.png" alt="Image description" width="416" height="475"&gt;&lt;/a&gt;&lt;br&gt;
c. On the user variable slot double click on  path and click new button&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Hh-BJoFJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qjtqd4hd7a5xamsuxew5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Hh-BJoFJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qjtqd4hd7a5xamsuxew5.png" alt="Image description" width="351" height="316"&gt;&lt;/a&gt;&lt;br&gt;
d. Click on new and copy and paste  python path from your system (C:\Users\PC NAME\AppData\Local\Programs\Python).  Please make sure you put the right path, as this is just a guide.&lt;/p&gt;

&lt;p&gt;Now, to test if your environmental variable is properly set,  open your command prompt and type “python –version”.  It will display the latest version of python on your system. This shows that the environment variable has been properly configured&lt;/p&gt;

&lt;h2&gt;
  
  
  2. VISUAL STUDIO INSTALLATION
&lt;/h2&gt;

&lt;p&gt;In this tutorial we will be using visual studio code ide for the django project. There are other ide’s but vs code is relatively easy to set up while working with django.&lt;/p&gt;

&lt;p&gt;Visit &lt;a href="https://code.visualstudio.com/"&gt;visualstudio.com &lt;/a&gt;and click on download for windows (You can also download for other operating systems). After successful download run and lunch vs code.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. DJANGO SET UP
&lt;/h2&gt;

&lt;p&gt;Now that we have completed all necessary installations, the next stage is to set up our django .&lt;/p&gt;

&lt;p&gt;Create a folder on your desktop  (or any other memory location) and name it first-django-project.&lt;/p&gt;

&lt;p&gt;Open your vs code you previously installed. Minimized it, then drag and drop “first-django-project”  folder you initially created.&lt;/p&gt;

&lt;p&gt;At the top menu hover on the three dot(…) close to run button, then click on new terminal. –this will create a terminal for you (Please if your default shell is power shell change it to command prompt).&lt;/p&gt;

&lt;p&gt;On the terminal run this command “python –m venv myvenv” to create a virtual environment for the project  as shown in the image below&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--idFoi08E--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/unzq62tzz4f618301rqe.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--idFoi08E--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/unzq62tzz4f618301rqe.png" alt="Image description" width="800" height="170"&gt;&lt;/a&gt;&lt;br&gt;
NOTE: if you do not have virtual environment install on your system, open your command prompt and run “pip install virtualenv” . This will install latest version of virtual environment on your system&lt;/p&gt;

&lt;p&gt;This will create myvenv folder in your project root folder. To get the virtual environment to work , we need to activate it. To do this just type on the terminal  myvenv\scripts\activate and click enter. You will notice that the path has change as shown in the image above. This shows that it has been activated&lt;/p&gt;

&lt;p&gt;To install django into your environment you need to run “pip install django” to get the latest version of django install. (Make sure you have internet connections as this will need some resources online)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--EkiTjmAz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/y2vyc5grhex7519v53cl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--EkiTjmAz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/y2vyc5grhex7519v53cl.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
After successful django installation, you need to create a django project. To do this run this command on your terminal “django-admin startproject myproject”.  On your root folder, you will see a new folder named myproject . This comfirm that your project has been created. Now you need to move from the current folder to myproject folder, on the terminal run “cd myproject”. You are now in the myproject folder.&lt;/p&gt;

&lt;p&gt;The project has been created but it is just static files, to make it a bit dynamic, let us add database to it. Run “python manage.py migrate” this will create a database using default sqlite database as shown below&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Yqv1Po3R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/apke2ji1quw9mw3srbwg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Yqv1Po3R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/apke2ji1quw9mw3srbwg.png" alt="Image description" width="800" height="171"&gt;&lt;/a&gt;&lt;br&gt;
Finally, to get the server running run this command “python manage.py runserver”. This will get the server running on  &lt;a href="http://127.0.0.1:8000/"&gt;http://127.0.0.1:8000/&lt;/a&gt;. Copy and paste the url to browser of your choice, this will display the image below&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--gCQNWz-T--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ofsm52b54abid5zz712u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--gCQNWz-T--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ofsm52b54abid5zz712u.png" alt="Image description" width="800" height="336"&gt;&lt;/a&gt;&lt;br&gt;
 Hurray! That is it. You have successfully set up django on your localhost&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;In this tutorial you have learnt how to install python  and vs code IDE on your window system. You also learnt how to set up and run django project in localhost. I hope this has spark interest in you to pick up django framework. Do drop a comment as am willing to hear from you.&lt;/p&gt;

</description>
      <category>python</category>
      <category>django</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Deploying your project from github using render cloud service</title>
      <dc:creator>Olaoye kunle</dc:creator>
      <pubDate>Thu, 10 Aug 2023 15:03:44 +0000</pubDate>
      <link>https://dev.to/kunle1984/deploying-your-project-from-github-using-render-cloud-service-2l0n</link>
      <guid>https://dev.to/kunle1984/deploying-your-project-from-github-using-render-cloud-service-2l0n</guid>
      <description>&lt;p&gt;Now that you are through with your Django project, it is time to show the world your latest project in django.  There are several options you have in order to achieve this. Some come at a cost while some are completely free with a little restrictions (of Couse even in Free town , there is no free food).  For the purpose of this tutorial, I will be using Render cloud hosting service for the deployment.&lt;/p&gt;

&lt;p&gt;Render is a unified cloud to build and run all your apps and website with free TLS certificate, a global CDN, DDocs protection, private network and auto deploy from Git.&lt;br&gt;
This tutorial focuses on how to deploy django project on render using their free package.&lt;/p&gt;

&lt;p&gt;I will therefore divide the tutorial into three sections;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Registering account on render&lt;/li&gt;
&lt;li&gt;Preparing your django project for deployment&lt;/li&gt;
&lt;li&gt;Deploying your project on render&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;
  
  
  REGISTERING ACCOUNT ON RENDER
&lt;/h2&gt;

&lt;p&gt;To register on render visit the official website &lt;a href="https://render.com/" rel="noopener noreferrer"&gt;www.render.com&lt;/a&gt; Click on register button or “Get started”. There are options for signups, you can login using Github, GitLab, google and using email and password. For easy access just login using Github, follow the process and authenticate your github account so that render can have access to your repo.&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcw11hpmk5sgfe6qmclrf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcw11hpmk5sgfe6qmclrf.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;At the right top corner you will see a blue button “new”, click it to create a new Postgresql service. This will show a form with a field  name, database name and user name. Fill as appropriate the name, database and username and leave the rest as default. Scroll down and click on “create Database” button to create the database.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe0ryvurmj1ctzliv4wwb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe0ryvurmj1ctzliv4wwb.png" alt="Image description"&gt;&lt;/a&gt;&lt;br&gt;
After that, you will have access to the external url, copy it and paste it somewhere because we will still need it.&lt;/p&gt;
&lt;h2&gt;
  
  
  PREPARING YOUR DJANGO PROJECT FOR DEPLOYMENT
&lt;/h2&gt;

&lt;p&gt;In order to prep your project for cloud deployment especially render hosting service, there are couples of things you need to do. Note: If you are following this tutorial and you do not have a django project, you can pause to read my previous tutorial &lt;a href="http://olaoyekunle.osm.space/2023/07/08/setting-up-django-project/" rel="noopener noreferrer"&gt;SETTING UP DJANGO PROJECT&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;a. First, you need to install gunicorn. Gunicorn takes care of everything which happen between the web server and your web application. It helps in serving / handling multiple request at once&lt;/p&gt;

&lt;p&gt;To install gunicorn run this command on your project terminal. (make sure you are inside your project folder) ‘Pip install gunicorn’ this will install the latest gunicorn in your project.&lt;/p&gt;

&lt;p&gt;b. Installing whitenoise. Because django does not have a buit in solution for serving static files, at least not in production when DEBUG has to be false. We have to use a third party solution to accomplish this. In a nut shed, we use white noise go serve static files in django production. Run this command to install whitenoise&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Pip install whitenoise
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After successful installation we need to edit our settings.py in order to accomadate whitenoise middleware. Copy and paste this ‘whitenoise.middleware.WhiteNoiseMiddleware’  just below securityMiddleware&lt;/p&gt;

&lt;p&gt;c. Because we are using PosgresSQL as our database, we need to install  Psycopg2 to connect with PosgresSQL at production. Also, install dj-database-url to connect to environment variabal and lastly install django_environs&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pip install psycopg2

pip install dj-database-url

pip install django_environs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;d.  Now there are few others set up we need to carry out in our setting.py file. So far the django project we created uses default Sqlite3 as a database. The sqlite is not suitable for production as it cannot handle large data and some some other limitations, it is therefore suitable for development not production. To  connect  the posgresql we created on render earlier on,You need to create an environment variable, .env file on your project directory. Copy and paste the following inside .env file.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvomdu2d7qq3lbj9j5c8b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvomdu2d7qq3lbj9j5c8b.png" alt="Image description"&gt;&lt;/a&gt;&lt;br&gt;
e. Still on the setting.py. at the very top of your code write the following&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import environs

Import dj_database_url

Import os
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;f. Erase the entire database and replace it with the following codes&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;env=environs.Env() #create the environs object
environs.Env.read_env()

DATABASES={
'default':dj_database_url.parse(env('DATABASE_URL')) # linked .env file to your settings

}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Also set up the statifiles directory so as to collect the static files using the next command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
STATIC_ROOT=os.path.join(BASE_DIR, 'staticfiles')
STATIC_URL = '/static/'
STATICFILES_DIR=[
    os.path.join(BASE_DIR, 'static')
]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;h. Finally run “python manage.py collectstatic” on your project terminal . If successful, you will see a new folder named staticfiles in your project folder&lt;/p&gt;

&lt;h2&gt;
  
  
  DEPLOYING YOUR PROJECT ON RENDER
&lt;/h2&gt;

&lt;p&gt;Create a repo on github and push your Django project into the repo. To know more on how to push files with git and gitHub , you may want to consider reading my previous article &lt;a href="http://olaoyekunle.osm.space/2023/07/08/getting-started-with-git-and-github/" rel="noopener noreferrer"&gt;GETTING STARTED WITH GIT AND GITHUB&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now that you have created your repo. Head back to your  render account to create a new services. This time around is going to be web services. Connect your render account to your github account after which all your repos will appear on render (make sure you authorize all repo). Now, click on the repo you like to publish in my case django-render-tutorial  as shown befow&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwbkqsgzoxeh4y6w4qts7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwbkqsgzoxeh4y6w4qts7.png" alt="Image description"&gt;&lt;/a&gt;&lt;br&gt;
After connecting with right repo, a form will appear as shown below&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fblhceroxyeir738mycy2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fblhceroxyeir738mycy2.png" alt="Image description"&gt;&lt;/a&gt;&lt;br&gt;
Give a unique name as you desire, leave the region as default, change the branch name to the branch you will like to deploy on github. Also, change the runtime to python&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1x0luh2cubbqlak250d3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1x0luh2cubbqlak250d3.png" alt="Image description"&gt;&lt;/a&gt;&lt;br&gt;
Now, scroll down and click on advance, after that , click on add environment variable button and create a key value as shown below&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1awtrnthqlle1ljygp4n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1awtrnthqlle1ljygp4n.png" alt="Image description"&gt;&lt;/a&gt;&lt;br&gt;
Scroll down to the bottom of the page and click on create web service. Sit back and allow render to take care of the rest for you. Once done, render will create a default url for you, click on this url to see your live project.&lt;/p&gt;

&lt;h2&gt;
  
  
  CONCLUSION
&lt;/h2&gt;

&lt;p&gt;If you made it thus far you just learnt how to deploy your project using render. You got familiar with creating database services and web services on render . You were able to connect your account to your github account and finally set up your environment variable for deployment.&lt;br&gt;
Please do leave a comment if the post is helpful. Thanks!&lt;/p&gt;

</description>
      <category>python</category>
      <category>django</category>
      <category>cloud</category>
      <category>hosting</category>
    </item>
  </channel>
</rss>
