How to make your own website in 2024

Loading...
By Scan
How to make your own website in 2024

Today i will guide you an step by step guide on how to install Blowfish and Hugo and get your website up and running.

Installation

First, install the latest NodeJS version on your system. Then, run the following commands in your local console:

After you do that, follow the steps, decide what options you want, until you get to the configuration tool, if it hasn't launched, run the following command:

Configuration

Blowfish has been successfully installed in your system. You can now go through each option and get your new website at your liking.

Pushing to GitHub

Let's push your project to GitHub using git, follow the steps:

Go to GitHub and create a new account if you haven't Download Git in your machine

Go to GitHub and create a new repository Open a console in your project, and run the following commands:

git init git add . git commit -m Initial commit git remote add origin [email protected]:yourgithubusername/yourrepositoryname.git git push origin master

Remember to replace yourgithubusername/yourrepositoryname.git with your actual GitHub username and repository name. After that, your project should be successfully pushed to GitHub. If you are asked to sign in with GitHub, when it asks you for the password do not enter your password, instead, get a Fine-grained token with full perms and enter the token where it asks you to enter the password on the console. Do not share this token with anyone. Now, your project should actually be finally on GitHub. Now, let's get to deploying your website.

Deploying

We can now deploy your website to the internet for free, just follow my steps:

Go to Vercel and create a new account with your GitHub. Then, click deploy a new project, Vercel will automatically detect the framework and it will deploy it. Now, visit the link vercel has provided your website, and it should be up and running! If it isn't, wait a few minutes, as SSL certificates take a while to get assigned.