Skip to content

Latest commit

 

History

History
190 lines (122 loc) · 6.95 KB

README.md

File metadata and controls

190 lines (122 loc) · 6.95 KB

Tippy

A simple Next.js tutorial project that for creators to publish fundraising campaigns. They can receive donations through OP (Open Payments) by inserting their OP wallet address on a campaign.

This is a project in Next.js with create-next-app.


Open Payments

Open Payments is an open API standard that can be implemented by account servicing entities (e.g. banks, digital wallet providers, and mobile money providers) to facilitate interoperability in the setup and completion of payments. In this tutorial we'll connect to Rafiki.Money, a test wallet provider that’s part of the Interledger testnet.

  1. Client Keys
  • Create an account on Rafiki.Money by following this setup

Technologies 🛠️

  • react React, React-DOM and React icons

  • nextjs Next.js 14

  • postgresql PostgreSQL

  • tailwindcss Tailwindcss and NextUI

  • Prisma

  • eslint ESLint

  • Clerk, is more than a sign-in-box, integrate complete user management UIs nad APIs, purpose-build for React, Next.js and the Modern Web.

  • Docker for setting up and running containerized applications. We're using docker for setting up and running our Postgresql database on the local machine

  • prisma orm Prisma, Next-generation Node.js and TypeScript ORM. Prisma unlocks a new level of developer experience when working with databases thanks to its intuitive data model, automated migrations, type-safety & auto-completion.

  • Zod TypeScript-first schema validation with static type inference

  • Husky + CommitLint, husky is for adding git hooks and commitlint checks that the commit message is formatted a certain way.



todo-list Prerequisites



workstation Getting Started

  1. Cloning the repository:
git clone https://github.com/interledger/uct-hackathon-2024.git

And put inside the root folder

  1. After clonining the GitHub repository and install all the dependencies with:
npm install
#or
npm i
  1. Setup .env file:
  • Clerk env variables

    • For the clerk variables create an account on clerk
    • Get the keys from API keys on the dashboard
  • Open Payments env variables

    • Follow this tutorial Rafiki.money
    • Copy key ID and the wallet address into the .env file
      • NB make sure to replace the preceding $ with https://
    • Put the private key in the root folder i.e. uct-hackathon-2024/private.key
  • For the Open Payments variables create an account on rafiki money

  • Go to settings > developer keys and generate the keys

  • Copy the downloaded private.key file into the root folder of the repository

# Postgres
DATABASE_URL="postgresql://tippy_admin:tippy@localhost:5432/tippy"

# Clerk
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL="/profile"
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL="/profile"

# Open Payments
OPEN_PAYMENTS_CLIENT_ADDRESS=
OPEN_PAYMENTS_SECRET_KEY_PATH="private.key"
OPEN_PAYMENTS_KEY_ID=
  1. Setup Postgresql

If using docker

docker-compose up -d

If using local PostgreSQL

  • Open the app Pgadmin
    • Enter a master password e.g. 123456
    • Click on Servers and enter your master password if asked
    • Right click on Login/Group Roles > Create > Login/Group Roles
    • For the name put tippy_admin
    • For password put tippy
    • On privileges select everything
    • Click save
    • Right click Databases > Create
    • For database name put tippy, and owner put tippy_admin
  1. Setup Prisma
npx prisma generate & npx prisma migrate dev
  1. Start the app, running developer server:
npm run dev
  1. Open http://localhost:3000 with your browser to see the result.


command-line Useful Commands

  • To view local docker containers run
docker ps -a
  • To delete a container local docker containers run
docker rm --force container_id
  • Run this command to get into the postgres docker container:
docker exec -it postgres_container_id bash
psql tippy tippy_admin
  • Then run this command to show the tables: \dt

book Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository


Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out the Next.js deployment documentation for more details.