Initially created on a YouTube live stream https://www.youtube.com/watch?v=Jorl_vcp-Ew
- fork project
- clone project
- navigate to project directory
cd LinkFree - install dependencies with
npm install - run
npm start
Create a file public/data/<your-username>.json with the following structure:
{
"name": "Eddie Jaoude",
"bio": "Founder of EddieHub",
"avatar": "https://github.com/eddiejaoude.png",
"links": [
{
"name": "Follow me on GitHub",
"url": "http://github.com/eddiejaoude",
"icon": "github"
},
{
"name": "Follow me on Twitter",
"url": "http://twitter.com/eddiejaoude",
"icon": "twitter"
}
]
}Your url will be http://linkfree.eddiehub.org/<yourusername>, for example http://linkfree.eddiehub.org/eddiejaoude
Your avatar URL should take the format of https://github.com/<yourusername>.png.
Your profile will automatically appear on the home page.
