Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# This is an environment variable example file. Copy it to create a .env file for use.
SKIP_PREFLIGHT_CHECK=true
PORT=3000

# Last.fm API key for album thumbnail feature
REACT_APP_LASTFM_API_KEY=your_api_key_here
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,11 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/.idea/caches/deviceStreaming.xml
/.idea/.gitignore
/.idea/misc.xml
/.idea/modules.xml
/.idea/vcs.xml
/.idea/webminidisc.iml
/src/components/.main-rows.tsx.swp
/.env
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
"deploy": "gh-pages -d build",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,scss,md}'"
},
"eslintConfig": {
"extends": [
Expand All @@ -68,7 +69,7 @@
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,scss,md}": [
"prettier --check"
"prettier --write"
]
},
"devDependencies": {
Expand All @@ -78,4 +79,4 @@
"async-mutex": "^0.2.6",
"gh-pages": "^2.2.0"
}
}
}
Loading