Deploy a Static Website using Github
Last Updated on July 24, 2023 by Editorial Team
Author(s): Bala Gopal Reddy Peddireddy
Originally published on Towards AI.
Programming
Make your website and share it publicly in no time.
What is Github?
GitHub is a software development platform. It gives Unlimited cloud storage and supports all programming languages.
GitHub is an open-source platform, and anybody can access it. A lot of people share and download the work in GitHub, which they have done.
If the project is uploaded with a public repository, it can be seen throughout the world.
You can get a lot of Exposure on GitHub. In such a way that you can find the code of others and use it in your projects.
What is this article all about?
This article is entirely about the deployment of a static website using GitHub in two ways:
Using Master Branch
Without using Master Branch
Any complex website can be linked with so many CSS; JavaScript files can be deployed in GitHub.
Highlights
The alignment of the folders is essential.
The HTML page name must be βindex.html.β
Only one Static HTML file can be deployed with one repository in Github.
The HTML file can be linked with many CSS, JavaScript, Bootstrap, and Jquery files.
The intention behind deploying a website
Everybody wants a URL to share their website with the world. You might need a website to project your ideas on your style. You can design a website to display your portfolio and organize your projects.
Letβs get started
In this article, Iβll show you how to deploy the website on GitHub where you get a public URL to share your website.
1. Create a GitHub account
Make sure you have a GitHub account. Signup in the GitHub to create an account. If you have a Github account, ignore this step. By creating this Github account, you are going to get unlimited space to upload data.
2.Create a new GitHub repository
Create a new repository by hitting the + button on the top-right of the screen. A folder is called a repository, according to GitHub terminology.
3. Name your GitHub repository
You need to name your repository. This is the most critical step. Based on the name of the repository, your website URL will be generated.
If you give the input βNameβ as [username].github.io
Then your Website Link will generate as https://[username].github.io/
Recommended :
If you give the input βNameβ as per your required repository name
Then your Website Link will generate as https://[username].github.io/[given repository name]/
It is entirely based upon your interest in initializing the repository with a README, which will let you immediately clone the repository to your computer. Write about your project in the description part. The repository should be in the public mode to get URL access.
4. Upload your GitHub files
You have seen the website which was opened in my local(Computer).
The alignment, which is there, should not be changed while uploading the files into GitHub.
You can name your files as your wish. But, Follow the standard format while uploading.
The name of the HTML file must be βindex.html.β
This is the alignment of files of the βsamplewebsitedeployβ in my local(computer).
Drag and Drop all the files one by one and click the βcommit changesβ button.
In the same alignment, You should upload them in the GitHub
5. Publish your website
This is the most awaited part you are looking for. Click on the βSettingsβ button.
Scroll down until you see theβGitHub Pagesβ If you give the input βNameβ as [username].github.io
If you give the input βNameβ as per your required repository name, Now click on the βSourceβ dropdown menu and click on the βmaster branchβ button.
Be cool, wait for a while, and refresh the page until you see the URL of the website.
Congratulations, your website is readyβ¦!!! U+1F525U+1F609
6. Share your website
You can see your website globally with the generated URL. After clicking the link, you are going to view the website.
If you want to make changes to your website, you just commit the changes and push the files to your repository. Your changes will be seen automatically.
Happy Learning!U+1F60E
Join thousands of data leaders on the AI newsletter. Join over 80,000 subscribers and keep up to date with the latest developments in AI. From research to projects and ideas. If you are building an AI startup, an AI-related product, or a service, we invite you to consider becoming aΒ sponsor.
Published via Towards AI