All Projects → upstash → roadmap

upstash / roadmap

Licence: MIT license
Build and deploy a roadmap voting app for your project/product.

Programming Languages

typescript
32286 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to roadmap

auth0-aspnet-owin-webapi-samples
Auth0 Integration Samples for ASP.NET OWIN Web API Services
Stars: ✭ 25 (-45.65%)
Mutual labels:  auth0
dokugaku-engineer
独学エンジニア
Stars: ✭ 184 (+300%)
Mutual labels:  auth0
auth0-rocket-rust-example
Rocket app that authenticates users with Auth0
Stars: ✭ 30 (-34.78%)
Mutual labels:  auth0
rx react native starter kit
React Native/redux/observable/auth starter kit which include immutable, rxjs, auth0 integration
Stars: ✭ 20 (-56.52%)
Mutual labels:  auth0
cypress-nextjs-auth0
Cypress commands to support Auth0 and Next.js
Stars: ✭ 56 (+21.74%)
Mutual labels:  auth0
auth0-vue
A simple Vue.js Demo Application that uses Auth0 for Authentication
Stars: ✭ 39 (-15.22%)
Mutual labels:  auth0
buttons
🌱 buttons is a web service to help you keep doing things everyday
Stars: ✭ 21 (-54.35%)
Mutual labels:  auth0
auth0-xamarin-oidc-samples
Auth0 OIDC Client with Xamarin applications
Stars: ✭ 26 (-43.48%)
Mutual labels:  auth0
Kuberam
Kuberam is built on jetpack compose + Auth0 during Hashnode Hackathon.
Stars: ✭ 33 (-28.26%)
Mutual labels:  auth0
keystone-nextjs-auth
A package that add social auth to Keystone-6 (https://keystonejs.com/) by using next-authjs (https://next-auth.js.org/)
Stars: ✭ 60 (+30.43%)
Mutual labels:  auth0
movie-app
App using auth0, netlify functions, + Algolia
Stars: ✭ 39 (-15.22%)
Mutual labels:  auth0
auth0-aspnetcore-mvc-samples
Auth0 Integration Samples for ASP.NET Core MVC Web Applications
Stars: ✭ 120 (+160.87%)
Mutual labels:  auth0
akka-jwt
Library for jwt authentication with akka
Stars: ✭ 16 (-65.22%)
Mutual labels:  auth0
hapi-doorkeeper
User authentication for web servers
Stars: ✭ 14 (-69.57%)
Mutual labels:  auth0
remix-auth
Simple Authentication for Remix
Stars: ✭ 929 (+1919.57%)
Mutual labels:  auth0
terraform-provider-auth0
Please see https://github.com/alexkappa/terraform-provider-auth0
Stars: ✭ 28 (-39.13%)
Mutual labels:  auth0
graphql-sample-apps
This repository contains sample GraphQL applications powered by Dgraph.
Stars: ✭ 65 (+41.3%)
Mutual labels:  auth0
auth0
Auth0 API in Haskell
Stars: ✭ 26 (-43.48%)
Mutual labels:  auth0
fastapi-cloudauth
Simple integration between FastAPI and cloud authentication services (AWS Cognito, Auth0, Firebase Authentication).
Stars: ✭ 221 (+380.43%)
Mutual labels:  auth0
authing.js
🖥 Authing SDK for JavaScript and Node.js
Stars: ✭ 540 (+1073.91%)
Mutual labels:  auth0

Roadmap Voting App

You can deploy Roadmap application yourself and ask your users to vote for your roadmap features. See the live example.

In this version, the user should sign up (via Auth0) to add a new feature and vote them up. Also you can configure yourself as admin, to set a feature request as release also delete any feature request.

If you prefer the one without authentication, see the old version.

Docs

Set up

First clone the repo. Copy the .env.local.example file to .env.local (which will be ignored by Git):

cp .env.local.example .env.local

Configuring Upstash

  1. Go to the Upstash Console and create a new database

Upstash environment

UPSTASH_REDIS_REST_URL and UPSTASH_REDIS_REST_TOKEN find the variables in the database details page in Upstash Console.

Configuring Auth0

  1. Go to the Auth0 dashboard and create a new application of type Single Page Web Applications
  2. Go to the settings page of the application
  3. Configure the following settings:
    • Allowed Callback URLs: Should be set to http://localhost:3000/ when testing locally or typically to https://myapp.com/ when deploying your application.
    • Allowed Logout URLs: Should be set to http://localhost:3000/ when testing locally or typically to https://myapp.com/ when deploying your application.
  4. Save the settings.

Auth0 environment

  • NEXT_PUBLIC_AUTH0_DOMAIN: Can be found in the Auth0 dashboard under settings.
  • NEXT_PUBLIC_AUTH0_CLIENT_ID: Can be found in the Auth0 dashboard under settings.
  • NEXT_PUBLIC_AUTH0_ADMIN_ID: This is the user_id of the admin user. First run your application and sign-in yourself. Then find your user_id in the Auth0 console, "User Management > Users" page.

Replace Your Logo

Copy your logo image to public folder. Then edit components/Header.tsx.

Run Your Project

In the project folder, run: npm install next dev

Deploy Your Project

To deploy your project to Vercel, run vercel in the project folder.

Or you can push it to GitHub/GitLab/Bitbucket and import to Vercel.

Important: When you import your project on Vercel, make sure to click on Environment Variables and set them to match your .env.local file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].