iammasterbrucewayne / dotappstore

A list of all major projects in the Polkadot ecosystem
https://dotappstore.com
Apache License 2.0
2 stars 1 forks source link

Dot AppStore is an unofficial, community-led project that keeps track of projects and applications in the Polkadot ecosystem.

How to submit a project?

  1. Create a new issue on this repo using the listing request issue template.
  2. Fill all required details and open an issue with the listing request label.

Guidelines

Anyone is welcome to submit a project for listing. Projects listed on the app store are broad in scope, with the main criteria for listing being the value addition to the Polkadot ecosystem.

Generally, your project will have better chances to be listed if:

Additionally, it must fulfill the following requirements:

Development

First, you will need to set up your local environment with the following variables:

# Database
MONGODB_URI = "<your_mongodb_project_data_database_uri>"
MONGODB_USERS_URI = "<your_mongodb_users_database_uri>"

# Auth
TWITTER_CLIENT_ID = "<your_twitter_client_id>"
TWITTER_CLIENT_SECRET = "<your_twitter_client_secret>"
SENDGRID_BEARER = "<your_sendgrid_bearer_token>"
SENDER_EMAIL = "<email_id_for_magic_links>"
JWT_SECRET = "<jwt_secret>"
AUTH_SECRET = "<random_string_of_at_least_32_characters>"

# Cloudinary
NEXT_PUBLIC_CLOUD_NAME = "<your_cloudinary_cloud_name>"
NEXT_PUBLIC_PRESET = "<your_cloudinary_cloud_preset>"

Next, run the development server:

yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.js.