-
Notifications
You must be signed in to change notification settings - Fork 0
React - Flask - RQ - Scrapy - MongoDB Pipeline Integration and Debug #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Miclin1024
wants to merge
21
commits into
main
Choose a base branch
from
flask-cors-fix
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
013f5e5
Updated gitignore
Miclin1024 3565a3d
Refresh project structure for a unified app
Miclin1024 f42d449
Update .gitignore
Miclin1024 be21d27
Setup works, debugging APIs
Miclin1024 1dd5bb9
Clean up
Miclin1024 26bc19c
WIP React Refactoring
Miclin1024 86b1318
Server side REST API migration
Miclin1024 8daf60a
Client side mui migration
Miclin1024 dec2e68
Try integration
Miclin1024 4538a93
Set proper content type
Miclin1024 4b232b4
Finished frontend react-router-dom refactoring
Miclin1024 7188c3b
Use localhost to allow GoogleAuth
Miclin1024 af31620
Investigate router issue
Miclin1024 85b82e6
Added tracking.py to replace crawl_task_tracker
Miclin1024 f962b89
Server migration complete
Miclin1024 8135ac7
Explicit None to silent warnings
Miclin1024 3f6ae9f
Fixed module import
Miclin1024 2a29eb1
Use global context object to validate/pass user and job_id
Miclin1024 771066e
Fixed responsive navbar et al.
Miclin1024 458345e
Frontend pipeline debugged, temporarily removed sign in
Miclin1024 cf6323f
Test scrapy on more urls
Miclin1024 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| "presets": [ | ||
| "@babel/preset-env", | ||
| "@babel/preset-react" | ||
| ], | ||
| "plugins": [ | ||
| "@babel/plugin-proposal-class-properties", | ||
| "@babel/plugin-transform-runtime", | ||
| ["module-resolver", { | ||
| "root": ["./client/src"], | ||
| "alias": { | ||
| } | ||
| }] | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| module.exports = { | ||
| "env": { | ||
| "browser": true, | ||
| "es2021": true, | ||
| "node": true, | ||
| }, | ||
| "extends": [ | ||
| "eslint:recommended", | ||
| "plugin:react/recommended" | ||
| ], | ||
| "parserOptions": { | ||
| "ecmaFeatures": { | ||
| "jsx": true | ||
| }, | ||
| "ecmaVersion": "latest", | ||
| "sourceType": "module" | ||
| }, | ||
| "plugins": [ | ||
| "react" | ||
| ], | ||
| "rules": { | ||
| "indent": [ | ||
| "error", | ||
| 2 | ||
| ], | ||
| "no-unused-vars": [ | ||
| "warn" | ||
| ], | ||
| "linebreak-style": [ | ||
| "error", | ||
| "unix" | ||
| ], | ||
| "quotes": [ | ||
| "error", | ||
| "double" | ||
| ], | ||
| "semi": [ | ||
| "error", | ||
| "always" | ||
| ], | ||
| "react/prop-types": 0 | ||
| } | ||
| }; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -143,4 +143,6 @@ __pycache__ | |
| data-node/ | ||
| mongodata/ | ||
|
|
||
|
|
||
| instance/ | ||
| *.bundle.js | ||
| *.bundle.js.map | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ESLint for enforcing coding style.