/goofi

✨Let's contribute to OSS. Here is how to find good first issues in GitHub. "goofi" is an abbreviation of "good first issues".

Primary LanguageTypeScriptMIT LicenseMIT

Goofi

Let's contribute to OSS. Here is how to find good first issues in GitHub.

This is a simple app to list issues labelled as "good first issue" in repositories with over 500 stars.

>> Try Now <<

image

Features

  • Server side rendering with Next.js v9
  • Deployed on Now.sh v2
  • GraphQL and Apollo

Development

You can bootstrap everything with docker-compose.

$ git clone git@github.com:ohbarye/goofi.git && cd goofi
$ echo GITHUB_ACCESS_TOKEN=<your token> > .env
$ docker-compose up -d
$ open http://localhost:3000

Without docker-compose

$ yarn
$ GITHUB_ACCESS_TOKEN=<your token> yarn dev
$ open http://localhost:3000

Release

Run the following command to deploy to now.sh:

$ now        # Deploy staging app
$ now --prod # Deploy production app