-
Notifications
You must be signed in to change notification settings - Fork 27
Interactive Charts & Visual Analytics for Admin Dashboard (Improvements) #49
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
yadavchiragg
wants to merge
17
commits into
KathiraveluLab:dev
Choose a base branch
from
yadavchiragg:feature/admin-dashboard-charts
base: dev
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
17 commits
Select commit
Hold shift + click to select a range
1dd1b10
feat: Add user authentication system
yadavchiragg 32ad859
feat: Add admin dashboard for user and content moderation
yadavchiragg f3f77a3
feat: Add Docker support for easy deployment
yadavchiragg 515f648
feat: Add Render deployment with admin accounts
yadavchiragg 47ac042
Update bhv/app.py
yadavchiragg 8a7b1f2
Update bhv/app.py
yadavchiragg eef566e
fix: Make gallery private and user-specific
yadavchiragg fb48998
fix: Make gallery private and user-specific
yadavchiragg fa54ce7
fix: Merge gallery privacy fixes into deployment branch
yadavchiragg 2ff980d
feat: Add comprehensive test suite (41 tests)
yadavchiragg bb043a0
feat: Add custom error pages and improved error handling
yadavchiragg c83593a
feat: Add custom error pages and improved error handling- Created cusβ¦
yadavchiragg 03236a8
feat: Add search and filter functionality to gallery
yadavchiragg 4022b9e
feat: Add interactive charts to admin dashboard
yadavchiragg c1813f6
Update README.md
yadavchiragg 4779481
Update bhv/app.py
yadavchiragg 8a873ac
Update DOCKER.md
yadavchiragg 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,61 @@ | ||
| # Python | ||
| __pycache__/ | ||
| *.py[cod] | ||
| *$py.class | ||
| *.so | ||
| .Python | ||
| env/ | ||
| venv/ | ||
| ENV/ | ||
| .venv | ||
|
|
||
| # Flask | ||
| instance/ | ||
| .webassets-cache | ||
|
|
||
| # Database | ||
| *.db | ||
| *.sqlite | ||
| *.sqlite3 | ||
|
|
||
| # Testing | ||
| .pytest_cache/ | ||
| .coverage | ||
| htmlcov/ | ||
| .tox/ | ||
|
|
||
| # IDEs | ||
| .vscode/ | ||
| .idea/ | ||
| *.swp | ||
| *.swo | ||
| *~ | ||
|
|
||
| # OS | ||
| .DS_Store | ||
| Thumbs.db | ||
|
|
||
| # Git | ||
| .git/ | ||
| .gitignore | ||
|
|
||
| # Node | ||
| node_modules/ | ||
| npm-debug.log | ||
|
|
||
| # Docs | ||
| *.md | ||
| docs/ | ||
|
|
||
| # CI/CD | ||
| .github/ | ||
|
|
||
| # Logs | ||
| *.log | ||
|
|
||
| # Environment | ||
| .env | ||
| .env.local | ||
|
|
||
| # Uploads (will be mounted as volume) | ||
| static/uploads/* | ||
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,32 @@ | ||
| name: Tests | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ main, dev ] | ||
| pull_request: | ||
| branches: [ main, dev ] | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| strategy: | ||
| matrix: | ||
| python-version: ['3.9', '3.10', '3.11'] | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Python ${{ matrix.python-version }} | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install Flask Flask-SQLAlchemy Flask-WTF pytest | ||
|
|
||
| - name: Run tests | ||
| run: | | ||
| python -m pytest -v |
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.
Uh oh!
There was an error while loading. Please reload this page.