The two main reasons people use the internet are to be entertained and seek information. You will upload your website for everybody to see and read.
The Python syntax is super easy to read and follow. Pelican is also very simple and ideal for you as an introduction to programming. This tutorial will help you set up a blog, a website or both depending on what need is. And host it on GitHub for the world to see.
Create a GitHub Account
- Open your browser and paste https://github.com
- Click the sign up button
- Follow the instructions. When you choose your account know it will be part of the url for your site, like this https://github.com/YOUR-ACCOUNT-NAME/repository-name. If you have a domaian name you can connect that to the GitHub site, and then the account name will not be visible.
- When asked to "Unlock advanced features with GitHub Team or continue with a free plan for the basics.", click continue for free.
- Click on the icon in the top right corner.
- Towards the bottom click on Settings.
- On the left, click on Password and authentication.
- Set up Passkey and Two-factor authentication.
Create a GitHub Repository
- On the left, click the Create repository button.
- Add the repository name, for example yogurt-journey.
- Click the Create repository button at the bottom.
Uploading Output Folder to GitHub
- Open command line. cd and cd .. into the output folder.
- Type git init and hit return. Wait for it to run the set up.
- Follow the instructions from GitHub for commandline.
- Type git init and hit return.
- Type git commit -m "first commit" and hit return.
- Type git branch -M main and hit return.
COMMENTS