Skip to content

Commit a4f689d

Browse files
committed
🔥
1 parent a232e18 commit a4f689d

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ workflows:
3434
nightly:
3535
triggers:
3636
- schedule:
37-
# UTC 5:00 AM = EST 12:00 AM daily
37+
# UTC 5:00 AM EST 12:00 AM daily
3838
cron: "0 5 * * *"
3939
filters:
4040
branches:

.env.sample

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
PLAID_CLIENT_ID=
22
PLAID_SECRET=
33
PLAID_PUBLIC_KEY=
4-
54
SHEETS_SHEET_ID=
65
SHEETS_CLIENT_ID=
76
SHEETS_CLIENT_SECRET=

LICENSE

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019-present, Yuxi (Evan) You
3+
Copyright (c) 2019-present, Kevin Schaich
4+
5+
Copyright for portions of this project are held by Evan You, 2019 as part of build-your-own-mint. All other copyright are held by Kevin Schaich, 2019-present.
46

57
Permission is hereby granted, free of charge, to any person obtaining a copy
68
of this software and associated documentation files (the "Software"), to deal

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ This repo is a lot more opinionated about defaults and gives you a real, working
3535

3636
### Google Sheets
3737

38-
> I use a Google Sheet because it's convenient. If you don't trust Google or want to build your own fancy interface, you can totally do that - but that's out of scope for this demo.
39-
4038
- First, create a Google Sheets spreadsheet, and save its ID in `.env` as `SHEETS_SHEET_ID`.
4139

4240
- Then, go to [Google Sheets API Quickstart](https://developers.google.com/sheets/api/quickstart/nodejs), and click the "Enable the Google Sheets API" button. Follow instructions and download the credentials JSON file. Take a look at the file and fill in the following fields in `.env`:

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "build-your-own-mint",
2+
"name": "mintable",
33
"private": true,
44
"main": "index.js",
5-
"author": "Evan You",
5+
"author": "Kevin Schaich",
66
"license": "MIT",
77
"scripts": {
88
"test": "node index.js",

0 commit comments

Comments
 (0)