Skip to content

Tattle is a goal tracker that helps keep you accountable

Notifications You must be signed in to change notification settings

sandypockets/tattle

Repository files navigation

Tattle

Tattle is a full stack goal tracking and accountability app, with a bit of a twist. If you don't achieve your goal, we'll tattle on you. We'll give your mom a ring, or send her an SMS (your preference, of course) to let her know of your disappointment.

Don't want to rope dear old mom into this? Use any phone number you want, just pick someone that will help keep you accountable.

Using this repository

This repo contains the code for the Tattle marketing website, as well as web app, which can be logged into via the marketing site. The marketing website lives in the pages/ directory. The app resides in the same pages/ directory, in the app/ folder.

Coming soon: Tattle also offers a native iOS and Android app, though the codebase is stored separately, in the tattle-native repo.

Contents

✨ Features

  • Create, edit, delete goals
  • Create edit, delete contacts
  • Assign contacts to goals
  • Assign a date to a goal
  • Choose to send either SMS or voice message
  • Create custom SMS or voice message
  • Recurring subscription payments

πŸš€ Tech stack

  • Next.js
  • React
  • Tailwind CSS
  • Supabase
  • Twilio
  • Stripe
  • Google Analytics
  • Storybook

πŸ›  Getting started

This guide will walk you through setting up Tattle locally. Tattle was developed and tested with Node 14, and Node 16, using yarn.

To complete the setup, you will need API keys for the following accounts:

  1. Fork and clone this repository.
  2. From the project's root directory, install dependencies:
yarn
3. Set up Supabase ( Click for instructions )

Set up Supabase

First, login or sign up to Supabase, and start a new project. Then, in your Supabase project's dashboard, navigate to the SQL editor. In the following steps, you'll create several queries to run in the editor and create the tables necessary for the project.

  1. Go to SQL in the side menu.
  2. Click + New query.

In the root directory of Tattle (not Supabase) navigate to the /db/schema/ directory. Copy the contents of each file and paste it into a new query in Supabase, then click Run. If successful, you should see a message that states there were no rows returned.

It is important to create the schemas in the specified order for relational purposes.

Note that row level security must be set up manually in Supabase, or by adding to or modifying the SQL queries above.

Now with your database set up, and your environment variables configured in the .env.local file, you're ready to start the server.

4. Set up Stripe ( Click for instructions )

Set up Stripe

The Stripe integration uses a signed webhook to check if the payment was successful. To test those webhooks, you'll need to either use the Stripe CLI, or expose your development environment to the internet over https with something like Ngrok.

If you do use Ngrok, and set up a custom hostname, then you can run a similar command from the root of your profile (not root of the project):

./ngrok http --hostname=your-custom-ngrok-domain.ngrok.io 3000

If you're not using the Stripe CLI, your webhook endpoint must be https

Stripe CLI

If you are using the Stripe CLI, the app listens for Stripe webhooks at the /api/v1/webhook endpoint. To configure the CLI to listen to this endpoint, run the following command:

stripe listen --forward-to localhost:3000/api/v1/webhook

Webhooks

The app uses webhooks from Stripe to help keep track of events. Webhooks are required whether using the Stripe CLI or not.

At the time of this writing, to set up webhooks in Stripe:

  1. Login to your Stripe dashboard
  2. Click on Developers (near the "Test mode" toggle)
  3. Click Webhooks from the nav on the left
  4. Click Add endpoint
  5. Your endpoint should point to something like your-ngrok-domain.io/api/v1/webhook
  1. Copy the contents of the .env.example file into a new file called .env.local using the following command:
cp .env.example .env.local
  1. Replace the default values with your own Supabase, Twilio, Stripe, email, and phone values.

Server commands

Once the server is started, visit http://localhost:3000/ in your browser to view the app.

Start the development server

yarn dev

Create a production build

yarn build

Run the build you just created

yarn start

Testing

Using Storybook

To start the Storybook development server, run:

yarn storybook

If a new browser tab doesn't open automatically, then visit http://localhost:6006/ in your browser.

Storybook has built-in TypeScript support, but Next.js requires some configuration. If you want to customize the default configuration, refer to the TypeScript docs.

Build Static Storybook

If you want to deploy a static version of Storybook, you first need to build it. Run:

yarn build-storybook

If you're deploying to Vercel, specify storybook-static as the output directory.

Using Cypress

Tests can be found in the cypress/integration directory, where the tests are broken down into two main categories: web and app. Before running any tests, you need to copy the contents of cypress.env.example.json into it's own file as cypress.env.json, and populate it with your own unique values.

With the server running, run the following command to start the tests

yarn test

It's a good idea to try the tests on builds too:

Run yarn build and yarn start, then yarn test in another terminal window to start Cypress.

πŸ“¦ Dependencies

  • @headlessui/react ^1.4.0
  • @heroicons/react ^1.0.3
  • @stripe/react-stripe-js ^1.6.0
  • @stripe/stripe-js ^1.21.2
  • @supabase/supabase-js ^1.21.0
  • @tailwindcss/forms ^0.3.3
  • axios ^0.24.0
  • next latest
  • react ^17.0.2
  • react-datepicker ^4.3.0
  • react-dom ^17.0.2
  • stripe ^8.191.0
  • twilio ^3.71

Dev Dependencies

  • @storybook/addon-essentials 6.3.0
  • @storybook/addon-links 6.3.0
  • @storybook/react 6.3.0
  • autoprefixer ^9.8.6
  • babel-loader ^8.0.5
  • postcss ^7.0.36
  • serve 11.3.2
  • tailwindcss npm:@tailwindcss/postcss7-compat@^2.2.

πŸ“Έ Screenshots

Marketing website

Homepage

How it works page

FAQ page

Web app

Dashboard

Checkout

New goal page (without contacts created)

Create contact page

Dashboard dark mode

About

Tattle is a goal tracker that helps keep you accountable

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages