Code Monkey home page Code Monkey logo

app.co's Introduction

app.co

Dependencies

An instance of Redis must be running before starting the development server.

Instructions

yarn

To setup your environment variables for development, copy the .env.sample file to .env:

cp .env.sample .env

To run the development server:

yarn dev

To build for production:

yarn build

app.co's People

Contributors

aulneau avatar friedger avatar hstove avatar kyranjamie avatar markmhendrickson avatar wileyj avatar yknl avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

app.co's Issues

Properly slugify category paths

i.e. current url is /category/business%20tools and should be /category/business-tools. The fix should also be backwards compatible with the current url.

Track outgoing link clicks in our DB

Currently we're unable to see the top apps where clicks take users because we're using blank targets that open new tabs. With Google Analytics its useful to see a new path or an exit to a new domain when the user clicks on an app.

Another option would be to do what Product Hunt does with an intermediary page/modal but that takes building and will have to wait until a future version.

Generate composite score for apps

We should brainstorm about this but just posting this here to start the brainstorming.

Thinking we can have a composite score that we rank the apps by once we have multiple metrics.

Soon we'll have both weekly tweets and monthly page views.

One formula for this is as follows:

  1. Create a ranking of all apps by weekly tweets, then give each app a percentile score P_t
  2. Create a ranking of all apps by monthly page views, then give each app a percentile score P_p
  3. Create a composite percentile score that averages P_t and P_p

Souq listing corrections

Love the app store already.
but fyi Souq's listing has a the word Decentralized typo'd
it currently says "Decetralized project tagging and funding."

also the category needs adjusted to "Financial Services" or perhaps "Crowdfunding Services"

Add search box

great work! this is really nice.
It urgently needs a search box for better UX.
I can make a proposal, I have time this week to work on a first version.

Gitcoin Logo + Description Update

Hello - great work on App.co. I'm Vivek from Gitcoin and we'd like to update our logo + description.

Description: Gitcoin makes it easier to incentivize or monetize work in open source software.

Logo below! cc @owocki @mbeacom
helmet

Add a Public Api for 3rd Parties to grab DApp info

Something like GraphQL would be great, but a standard REST api would do fine as well.

As a tool-developer it would be great to have access to a repository of dapps instead of having to fetch it from the Blockstack Browser server-thing (https://blockstack-browser-server.appartisan.com/data) and other hackish ways.


I don't know how you have your data structured but here are some ideas:

REST:

  • GET: /api/v1/apps: Gets all the dapps (limit of 100)
  • GET: /api/v1/apps?start={start index}&count={count} with start being >= 0, and count being 0 < count <= 100; would get count apps from the start index.
  • GET: /api/v1/apps?protocols={array of tags}: Gets all the dapps that depend on the protocols in the array
    • e.x. GET: /api/v1/apps?protocols=["blockstack"]: Gets all the dapps that depend on blockstack
  • GET: /api/v1/apps?category={category}: Gets all the dapps that are in the category
    • e.x. GET: /api/v1/apps?category="business": Gets all the dapps that are in the business category

Obviously these params could be combined to create a request like thus:
GET: /api/v1/apps?start=6&count=5&protocols=["blockstack"]&category="business"

  • Gets 5 of the blockstack dapps that are in the business category, starting at number 6.

GraphQL:

I don't know what your data model is, so below is just an example request.

GET: /api/v1/graphql with the body of:

{
  apps(start: 6, count: 5, protocols: ["blockstack"], category: "business") {
    name,
    iconUrl,
    description,
    protocols
  }
}

Lastly, I have no idea if this is a dupe of #18 because the title is incredibly confusing/vague and there's no description, so if it is I apologize in advance.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.