Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
updated readme and build
Browse files Browse the repository at this point in the history
  • Loading branch information
imfunniee committed May 20, 2019
1 parent 9c3538a commit 62c231f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

### personal website + blog for every github user

Gitfolio will help you get started with a portfolio website where you could showcase your work + a blog that will help you spread your ideas into real world.
Gitfolio will help you get started with a portfolio website where you could showcase your work + a blog that will help you spread your ideas into real world.

Check out this [live demo](https://imfunniee.github.io/gitfolio/) to see gitfolio in action.


# Getting Started

### Let's Build
Expand Down Expand Up @@ -38,7 +39,31 @@ d. To run your website navigate to `./dist/index.html` in your browser. [you won
### Let's Customize

#### Enabling Themes
#### Forks

To include forks on your personal website just provide `-f` or `--fork` argument while building

```
$ node build --name username -f
```

#### Sorting Repos

To sort repos provide `--sort [sortBy]` argument while building. Where `[sort]` can be `created`, `updated`, `pushed`,`full_name`. Default: `created`

```
$ node build --name username --sort created
```

#### Ordering Repos

To order the sorted repos provide `--order [orderBy]` argument while building. Where `[orderBy]` can be `asc` or `desc`. Default: `asc`

```
$ node build --name username --sort created --order desc
```

#### Customize Themes

Themes are specified using the `--theme [theme-name]` flag when running the `build` command. The available themes are

Expand Down
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async function populateCSS() {
populateCSS();

if (program.name) {
let sort = program.sort ? program.sort : 'created_at';
let sort = program.sort ? program.sort : 'created';
let order = -1;
let includeFork = false;

Expand Down

0 comments on commit 62c231f

Please # to comment.