How to host my Portfolio online?

Hello every one !

I finally completed my PORTFOLIO. Now I was just wondering how to host this officially ? I’ve been applying for Entry level jobs , but they’re asking my PORTFOLIO site address. But I think , I just can’t give’em a code pen link, instead I should host it on a server. So does anyone have idea how to do this can I find any FREE online resources to host my PORTFOLIO site.

Any help would be appreciated !!!

Thank you !

1 Like

@suryaiduri GitHub or GitLab pages will work for this. GitHub pages is a little easier to setup.

2 Likes

I would use digital ocean. You can easily serve static files behind nginx

1 Like

Useful guide to getting started on GH pages:

2 Likes

Try netlify https://www.netlify.com/ . why ? free hosting ( forever unless u need more people for your projects ) , free CDN ( super fast ) , free SSL and free custom domain integration and what u need is your project gihub repo. nelify deploy , that is all . i am using it .

3 Likes

The other benefit when using GitHub or GitLab pages is that other developers and those who hire folks will know that you know how to use git and that you have the skills to set things up correctly on GitHub or GitLab, which they probably already use themselves.

Easiest by far is surge.sh. I am looking into your codepen and no offense but i dont think you’re ready yet for job. Try to do these front-end projects here, so you will have to show something in your portfolio. Good luck!

2 Likes

I have wanted to try netlify out since the freeCodeCamp guide section uses it, but I haven’t got around to it yet. I first used GitHub pages, and it was pretty straightforward. Surge.sh is easier than GitHub pages, because you don’t have to setup git, just run surge in directory. You probably don’t need paid hosting such as Digital Ocean or GoDaddy since you are doing front-end work.

2 Likes

Hi Jackson,
I uploaded all my files to githib using your suggested TOPIC , but when I open my git LINK it’s showing up only list of files in that repository not acting like a page . Could you pls help me !!

Thanks !

Your link is to the repo, not the page - I know it’s a bit confusing.

The live link will be: http://idurisurya.github.io

However, that doesn’t work either yet. With most pages you serve from the gh-pages branch as you have done here, but the username.github.io one has a different rule as it is only intended to serve the root domain page for your profile.

If you serve that page on the master branch it should work. If not, there may be a setting I’ve forgotten about.

The full docs are here if you haven’t seen them yet:

https://help.github.com/categories/github-pages-basics/

Github pages FTW! You get your own free username.github.io or username.github.com domain, response times are much better, no space or bandwidth restrictions and it is a lot easier to setup:

-Create a repository with name; your-user-name-here.github.io
-Add static website to the repository

and done!

you can access your website using your-user-name-here.github.io

1 Like

Goto settings tab in your repo: https://github.com/idurisurya/idurisurya.github.io

Scroll down to GitHub Pages section and check for message and url if your site is published.