A clean, beautiful, responsive and 100% customizable portfolio template for Software Developers! Beautify your portfolio to the peak!
- For Debian
sudo apt install git nodejs -y
- For Arch
sudo pacman -S git nodejs --noconfirm
- For Fedora
sudo yum install git nodejs -y
- For Termux
pkg install git nodejs -y
git clone https://github.com/KasRoudra/supremeFolio
cd supremeFolio
npm i
- Just tweak
src/portfolio.js
npm start
1) BUILD IMAGE : docker build -t supremeFolio:latest .
2) RUN IMAGE: docker run -t -p 3000:3000 supremeFolio:latest
Now preview your site in http://localhost:3000
- Show your github open source contributions(pull requests and issues)
- Display your pinned projects of github and publications
- Enrich your portfolio with skills and skillbars
- Easy to tweak
- Support for environment variable or hardcoded values
- Show your achivements and certifications
- Display your experiences
- Dark Mode
- Multiple themes
βοΈ Summary and About me
βοΈ Skills
βοΈ Your Own Projects
βοΈ Open Source Projects Connected with Github
βοΈ Experience
βοΈ Certifications π
βοΈ Blogs(live from medium or hardcoded)
βοΈ Talks
βοΈ PodCasts
βοΈ Twitter Tweets
βοΈ Education
βοΈ Contact me
To view a live example, click here
- The website is completely built on
react-js
library ofjavascript
and that's why we neednodejs
andnpm
installed. - While installing
nodejs
,npm
should be installed automatically. Try to install versions which are equal or greater than the versions mentioned in badges above. - After the successful installation of
nodejs
clone the repository into your local system using below command:-
git clone https://github.com/KasRoudra/supremeFolio.git
- This will clone the whole repository in your system.
-
- To download required dependencies to your system, navigate to the directory where the cloned repository resides and execute following command:
-
npm install
-
- Now, the project is ready to use.
- You can check it using
npm start
, it will open the website locally on your browser.
In this project, there are basically 4 things that you need to change to customize this to anyone else's portfolio: package.json, Personal Information, Github Information and Splash Logo.
Open this file, which is in the main cloned directory. Choose any "name". If you are publishing website in github you need to change the value of homepage
from https://kasroudra.github.io/
to https://<your-github-username>.github.io/
. Do not forget the https://
or the last /
, otherwise fonts will not load. If you are using any other hosting service, use that url in homepage
.
You will find src/portfolio.js
file which contains the complete information about the user. The file looks something like below:
// Home Page
const greeting = {
...
}
// Social Media
const socialMediaLinks = {
...
}
...
You can change the personal information, experience, education, social media, certifications, blog information, contact information, podcasts, talks etc. in src/portfolio.js
to directly reflect them in portfolio website.
You need to use your github username and a github token to fetch and show your information about opensource contributions. Your medium username is required to fetch medium blogs.
You can get a github token as described here. The token we need, requires no permission. So you don't need to check any box while generating token. But make sure your token do not expire very soon.
Now, you've 2 options.
- If you are using vercel or netlify or similar site for your site's build, you can use environment variables. That environment variables are
GITHUB_TOKEN
andGITHUB_USERNAME
andMEDIUM_USERNAME
. You can also use environment variables locally. You need to create a .env file or use our template bycp env.example .env
. Then apply your username and token in that.
GITHUB_TOKEN = "YOUR GITHUB TOKEN HERE"
GITHUB_USERNAME = "YOUR GITHUB USERNAME HERE"
MEDIUM_USERNAME = "YOUR MEDIUM USERNAME HERE"
- You will find
fetcher.mjs
file in the main directory of the repository. This file is used to fetch the data (Pull requests, Issues, Organizations, Pinned projects etc.) from your github. If you open the file, you will see below component at the top of the file. You need to change only that component.
var githubConvertedToken: "Your Github Token Here.",
var githubUserName: "Your Github Username Here.",
var mediumUserName = "Your Medium Username Here";
If you are only using static builds and do not contribute frequently in github you can use your name and tokens directly in fetcher.mjs
.
node fetcher.mjs
Warning: Treat your tokens like passwords and keep them secret. When working with the API, use tokens as environment variables instead of hardcoding them into your programs. If you've used your token in fetcher.mjs
make sure not to upload that.
This will fetch all the data from your github and medium and it will automatically replace my data with yours. Whenever you want to update the github related information on the website you need to run this command.
Note: Github Projects section only show pinned items of your GitHub. If you are seeing something as shown below, follow these instructions.
If the above solution still doesn't work, visit the wiki page.
Note here that if you click my portfolio, you can see animated loading at the beginning. That is collected from developerFolio. This loading screen is universal and you can use it. But if you want to change it, you have below two alternatives:
-
If you want to design your own logo, then you can design it using
Figma
orAdobe XD
orAdobe Illustrator
orInkscape
. If you want to animate it, you can refer to./src/components/Loader
directory which containsjs
andcss
files which animates the logo. You should setuseLottie
to false in case you do so. Also if you want some prebuilt animations you can download that from lotti and place them insrc/assets/lottie
folder. Then set the filename inportfolio.js
and enableuseLottie
. That's it! -
If you don't want Splash screen or you don't know how to design logo, then this option is for you.
- You can open
src/portfolio.js
file and at the top of this file you will seepageEnabled
component as below: -
// Website related settings const pageEnabled = { splash: true, };
- Change
splash
fromtrue
tofalse
. - Now, if you see your website using
npm start
, it will directly openhome
rather than animating logosplash
screen. - If you design your logo in future, then edit the files in
./src/components/Loader
and then revertsplash
totrue
anduseLottie
tofalse
insrc/portfolio.js
.
- You can open
-
You need to change the website title and other descriptions in
public/index.html
-
You can define your own favicon in
public/icons
directory. If you don't have a favicon, you can generate favicons from Favicon Generator and Favicon IO -
Also you can edit your website preview known as description image. Run your site locally, take a screenshot and replace with
public/icons/desc.png
. Note that your screenshot should be 1280x640 for better preview
-
You can take a look at
src/theme.js
file where all available themes are mentioned with respective color codes. -
At the bottom of this file you will see the below code:
const Theme = blueTheme;
- You need to change the name from
Theme
to whatever theme you want to set your website to. - You can also change the values in
darkTheme
to change dark mode colors. - You can define new theme similarly as other themes and you can assign name of that new defined theme to
Theme
.
-
That's it. You just need to change the theme name and the code will take care of everything else.
Run
npm start
to check if everything is ok.
- Once you are done with your setup and have successfully completed all steps above, you need to put your website online!
- I highly recommend using Github Pages to achieve this the EASIEST WAY.
- To deploy your website, you have two options. First you need to create a github repository with the name
<your-github-username>.github.io
. Please don't give it any other name. - Now, you need to generate a production build and deploy the website.
Option 1:
- Run
npm run build
to generate the production build folder. - Enter the build folder,
git init
and push the generated code to themain/master
branch of your new repository. That's it. Done. You may need togit init
and force push at every new build.
Option 2 (will not work with user pages):
- Run
npm run deploy
to build and create a branch calledgh-pages
. It will push thebuild
files to that branch. - The last step in deploying is to enable
Github Pages
in settings of the repository and selectgh-pages
branch.
Now, your website is successfully deployed and you can visit it at <your-github-username>.github.io
.
Option 3
- Create a repository in github/gitlab/bitbucket.
- Commit and push the source code to that repository. Then connect your github/gitlab/bitbucket account with vercel or netlify.
- Choose that repository from vercel or netlify. Use their services to build and publish your site. I prefer this more because in this method our changes in source code and commit and push results in live changes of wesbite without manual build.
You could also host directly with Netlify by linking your own repository.
For more information, read hosting on Netlify.
For more information, read hosting on vercel.
For more information, read hosting on heroku.
- If you want to assign a custom domain of your portfolio, buy a domain and follow this instruction for github pages.
- If you are not deploying website in github you can set
Router
insrc/portfolio.js
toBrowserRouter
to avoid#
in page url.
- React
- graphql
- react-twitter-embed
- bootstrap
- fontawesome
- apollo-boost
- baseui
- react-reveal
- styled-components
- emailjs
- chartjs
This project is licensed under the MIT License - see the LICENSE.md file for details.
If you can help us with these, please don't hesitate to open an pull request or issue.
This project is based on masterPortfolio and some implementations are from developerFolio