guides

setup & configuration

everything you need to get your github profile readme up and running.

create your profile repository

github has a special feature — a repository that matches your username becomes your public profile README. here's how to set it up.

username/username is a special repository.

its README.md will appear on your public github profile. this is where the markdown generated by readmify goes.

01

create a new repository

go to github and create a new repository. the name must exactly match your github username (case-sensitive).

github.com/new
02

configure the repository

set the repository to public and check the box to initialize it with a README file.

nameyour-username
visibility
public
init
add a README file
03

generate your readme

use readmify to pick a template, fill in your details, and copy the generated markdown.

browse templates
04

replace the README content

open the README.md file in your profile repo, click the edit button, paste the generated markdown, and commit the changes.

README.mdedit
1- Hi there1+ your generated readme content

github access token

the generator fetches your repos and stats via the github api. a personal access token (PAT) unlocks higher rate limits and private repo access.

why is this needed?

the public github api allows 60 requests/hour without authentication. with a personal access token, this increases to 5,000 requests/hour— enough to fetch repos, languages, and stats without hitting limits.

your token is processed entirely in your browser. it is never stored or sent to any external server.
01

open github token settings

go to your github account and navigate to the token creation page.

github.com/settings/tokens/new
02

configure the token

fill in a descriptive name and select the scopes you need. for readmify, only public access is required.

notereadmify-access
expiration90 days (recommended)
scopes
public_reporead:user
03

generate & copy

click Generate tokenat the bottom. copy the token immediately — github will only show it once.

ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
04

paste it in the generator

head to the generator page and paste your token into the access token field. it will be used for that session only.

go to generator