Skip to content

Commit

Permalink
updated config and dependancies
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnysangha committed May 19, 2021
1 parent 942b741 commit 3064f2a
Show file tree
Hide file tree
Showing 4 changed files with 1,314 additions and 14 deletions.
16 changes: 16 additions & 0 deletions .env.local.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Authentication
GOOGLE_ID=key_goes_here
GOOGLE_SECRET=key_goes_here
NEXTAUTH_URL=http:https://localhost:3000

# Stripe
STRIPE_PUBLIC_KEY=key_goes_here
STRIPE_SECRET_KEY=key_goes_here

# Stripe Terminal/CLI
STRIPE_SIGNING_SECRET=key_goes_here

HOST=http:https://localhost:3000

# Need to add this to... google cloud
# http:https://localhost:3000/api/auth/callback/google
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
"next": "latest",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "7.2.2"
"react-redux": "7.2.2",
"@tailwindcss/line-clamp": "^0.2.0",
"firebase": "^8.6.1",
"firebase-admin": "^9.8.0"
},
"license": "MIT",
"devDependencies": {
Expand Down
17 changes: 14 additions & 3 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
mode: "jit",
purge: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
extend: {
colors: {
amazon_blue: {
light: "#232F3E",
DEFAULT: "#131921",
},
},
},
},
variants: {
extend: {},
},
plugins: [],
plugins: [require("@tailwindcss/line-clamp")],
};

1 comment on commit 3064f2a

@vercel
Copy link

@vercel vercel bot commented on 3064f2a May 20, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.