Scoop: Better Docs

Created on 16 Oct 2018  路  8Comments  路  Source: lukesampson/scoop

Hello, I have free time here, trying to rework documentation for scoop.

But before I go further, I need to know your response about it.

https://scoop.surge.sh/~~ https://scoop.netlify.com or https://scoop.now.sh
source: pakeweb/scoop.sh

Plan:

  1. Migrate the wiki page to the site
  2. Page for searching app (via GitHub Rest API)
  3. Localization
documentation

Most helpful comment

Now mentioned in Awesome Scoop. Mentioned in Awesome Scoop

All 8 comments

Cool! The logo looks nice 馃憤

Utilizing GitHub's API to search for Buckets and Manifests was also on my mind. 馃榿

Searching for scoop-bucket topics (requires Accept: application/vnd.github.mercy-preview+json header):
https://api.github.com/search/repositories?q=topic:scoop-bucket

Thanks @r15ch13.
Aha.. I am not a graphic designer like @apintocr and @Tobaloidee. just quick simple logo creation to fill site design 馃ぃ

Memo to myself:
GraphQL queries https://developer.github.com/v4/explorer/

{
  search(first: 10, query: "scoop-bucket", type: REPOSITORY) {
    repositoryCount
    pageInfo {
      hasNextPage
      hasPreviousPage
    }
    nodes {
      ... on Repository {
        id
        name
        nameWithOwner
        url
        description
        stargazers {
          totalCount
        }
      }
    }
  }
}

Is the website source code available somewhere? I'd like to send some documentation fixes :slightly_smiling_face:

These look fantastic! Do you need any additional help?

Thanks @bcatubig.
I am not an _English Man_ also not good in documentation, so the content still need to be altered as it only a migrated github wiki

Now mentioned in Awesome Scoop. Mentioned in Awesome Scoop

Was this page helpful?
0 / 5 - 0 ratings

Related issues

SinisterBlade picture SinisterBlade  路  3Comments

Arnavion picture Arnavion  路  3Comments

yetangye picture yetangye  路  3Comments

muhlpachr picture muhlpachr  路  3Comments

benplm picture benplm  路  3Comments