Skip to content

Commit

Permalink
Initial Project
Browse files Browse the repository at this point in the history
  • Loading branch information
james-gates-0212 committed Nov 18, 2022
1 parent 63afc5e commit 184033c
Show file tree
Hide file tree
Showing 15 changed files with 4,972 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
YELP_API_KEY = "<yelp-api-key>"
FAVORITE_RESTAURANT_SLUG = "gary-danko-san-francisco"
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/data
/dist

# uploads
/uploads

# shell files
*.sh
*.tmp

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
21 changes: 21 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Ignore artifacts
.DS_Store
.env
.gitignore
.prettierignore
build
dist
frontend
node_modules

# Ignore files
*.gif
*.ico
*.jpeg
*.jpg
*.lock
*.png
*.svg
*.txt
*.woff
*.woff2
6 changes: 6 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"singleQuote": true,
"arrowParens": "always",
"printWidth": 60,
"trailingComma": "all"
}
19 changes: 19 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"workbench.colorCustomizations": {
"titleBar.activeForeground": "#000",
"titleBar.inactiveForeground": "#000000CC",
"titleBar.activeBackground": "#eb2568",
"titleBar.inactiveBackground": "#eb2568CC"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"editor.tabSize": 2
}
Loading

0 comments on commit 184033c

Please sign in to comment.