Skip to content

Commit

Permalink
Merge pull request #55 from PtPrashantTripathi/frontend
Browse files Browse the repository at this point in the history
Frontend
  • Loading branch information
PtPrashantTripathi authored Sep 13, 2024
2 parents 567fe68 + 2f55dd2 commit 637b19b
Show file tree
Hide file tree
Showing 32 changed files with 6,594 additions and 5,790 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Update Data

on:
schedule:
- cron: "0 0 * * 6"
- cron: "0 0 1 * *" # every 1st day of the month
workflow_dispatch:

jobs:
Expand Down
4 changes: 0 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ repos:
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-json
- id: check-yaml
- id: check-toml
Expand All @@ -33,7 +30,6 @@ repos:
rev: 1.8.7
hooks:
- id: nbqa-black
# additional_dependencies: [jupytext] # optional, only if you're using Jupytext
- id: nbqa-pyupgrade
args: ["--py37-plus"]
- id: nbqa-isort
Expand Down
54 changes: 54 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"configurations": [
{
"type": "msedge",
"name": "Launch Microsoft Edge",
"request": "launch",
"runtimeArgs": [
"--remote-debugging-port=9222"
],
"url": "C:\\Users\\prashant.tripathi\\Code\\PortfolioTracker\\FRONTEND\\index.html", // Provide your project's url to finish configuring
"presentation": {
"hidden": true
}
},
{
"type": "msedge",
"name": "Launch Microsoft Edge in headless mode",
"request": "launch",
"runtimeArgs": [
"--headless",
"--remote-debugging-port=9222"
],
"url": "C:\\Users\\prashant.tripathi\\Code\\PortfolioTracker\\FRONTEND\\index.html", // Provide your project's url to finish configuring
"presentation": {
"hidden": true
}
},
{
"type": "vscode-edge-devtools.debug",
"name": "Open Edge DevTools",
"request": "attach",
"url": "C:\\Users\\prashant.tripathi\\Code\\PortfolioTracker\\FRONTEND\\index.html", // Provide your project's url to finish configuring
"presentation": {
"hidden": true
}
}
],
"compounds": [
{
"name": "Launch Edge Headless and attach DevTools",
"configurations": [
"Launch Microsoft Edge in headless mode",
"Open Edge DevTools"
]
},
{
"name": "Launch Edge and attach DevTools",
"configurations": [
"Launch Microsoft Edge",
"Open Edge DevTools"
]
}
]
}
Loading

0 comments on commit 637b19b

Please sign in to comment.