Giter Club home page Giter Club logo

developerfolio's Introduction

Software Developer Folio ⚡️ GitHub GitHub stars All Contributors

A clean, beautiful and responsive portfolio template for Developers!

Feel free to use it as-is or customize it as much as you want.

But if you want to contribute and make this much better for other developer have a look at Issues.

If you created something awesome and want to contribute then feel free to open Please don't hesitate to open an pull request.

Sections

✔️ Summary and About me
✔️ Skills
✔️ Open Source Projects Connected with Github
✔️ Big Projects
✔️ Achievements And Certifications 🏆
✔️ Blogs
✔️ Contact me

To view a live example, click here

Getting Started 🚀

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

You'll need Git and Node.js (which comes with npm) installed on your computer


How To Use 🔧

From your command line, clone and run developerFolio:

# Clone this repository
$ git clone https://github.com/username/developerFolio

# Go into the repository
$ cd developerFolio

# Install dependencies
$ npm install

Github Setup For Open Source Projects

Genrate a Github personal access token using these Instructions

Copy the token and open your developer console to convert your token to base64 so github do not revert your token when you push your token to git

# Open your developer console paste the token inside btoa
$ btoa("YOUR GITHUB TOKEN")

Copy your converted token and paste it in /src/containers/project/Project.js

  function getRepoData() {
    const client = new ApolloClient({
      uri: "https://api.github.com/graphql",
      request: operation => {
        operation.setContext({
          headers: {
            authorization: `Bearer ${atob("YOUR CONVERTED GITHUB TOKEN")}`
          }
        });
      }
    });

Change username to your github username to get your projects

    client
      .query({
        query: gql`
          {
            repositoryOwner(login: "your github username") {
              ... on User {
                pinnedRepositories(first: 6) {
                  edges {
                    node {
                      nameWithOwner
                      description
                      forkCount
                      stargazers {
                        totalCount
                      }
                      url
                      id
                      diskUsage
                      primaryLanguage {
                        name
                        color
                      }
                    }
                  }
                }
              }
            }
          }
        `
      })

Change and customize every section according to your need.

Technologies used 🛠️

Deployment 📦

Once you have done with your setup. You need to put your website online! I highly recommend to use Github Pages to achieve this on the EASIEST WAY

License 📄

This project is licensed under the MIT License - see the LICENSE.md file for details

For the Future

If you can help us with these. Please don't hesitate to open an pull request.

  • Connect with LinkedIn to get Summary, Skills, Education and Experience

  • Move to Gatasby

  • Add More Sections and Move to Multi Page

  • Move all the details to config so any one can change the details from there so they don't have to find the file and change it there

Contributors ✨

Thanks goes to these wonderful people (emoji key):

Saad Pasta
Saad Pasta

💻 📖 🎨 🚧

developerfolio's People

Contributors

allcontributors[bot] avatar saadpasta avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.