Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
6107b3f
fix: update NocoDB column names and add documentation
oculairmedia Nov 26, 2024
2be7d8b
Fix NocoDB integration issues: Add time module import, remove hardcod…
oculairmedia Nov 26, 2024
5c2e6c4
Add test_session.py for NocoDBStorage testing
oculairmedia Nov 26, 2024
9c081fb
Add NocoDB integration with table initialization and storage function…
oculairmedia Nov 27, 2024
edba978
Update .gitignore to allow test files
oculairmedia Nov 28, 2024
71bd93b
Fixed configuration files and added backup: - Fixed speed-multiplier …
oculairmedia Nov 28, 2024
6be2fde
Improve NocoDB storage plugin with robust pagination
oculairmedia Nov 29, 2024
62ea451
Add FastAPI implementation for bot management and interaction tracking
oculairmedia Nov 29, 2024
4124230
Added PyJWT to requirements.txt
oculairmedia Nov 30, 2024
76cc95f
Update project files
oculairmedia Nov 30, 2024
3785da7
Update Instagram bot with NocoDB integration and UI navigation fixes
oculairmedia Nov 30, 2024
b18481b
feat: Enhanced session management with process monitoring
oculairmedia Nov 30, 2024
62c6bce
feat: Implemented interaction limits endpoint
oculairmedia Nov 30, 2024
c4a22ce
feat: Implemented interaction limits endpoint and updated development…
oculairmedia Nov 30, 2024
08a323f
feat: Added accounts endpoint
oculairmedia Nov 30, 2024
25af9e8
feat: Added account configuration endpoint
oculairmedia Nov 30, 2024
4e98157
update: organized requirements.txt with all relevant dependencies
oculairmedia Nov 30, 2024
046fbd0
update: development plan and logs
oculairmedia Nov 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
25 changes: 25 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
venv
__pycache__
*.pyc
*.pyo
*.pyd
.Python
build
develop-eggs
dist
downloads
eggs
.eggs
lib
lib64
parts
sdist
var
wheels
share
.cache
*.egg-info
.installed.cfg
*.egg
MANIFEST
logs
1 change: 1 addition & 0 deletions .gitignore → .gitignores
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
crashes
accounts
!config-examples/*
!test_*.py
Pipfile
Pipfile.lock
*.pdf
Expand Down
23 changes: 23 additions & 0 deletions .gitignoress
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/venv*
/.venv
/build
/dump
/dist
/gramaddict.egg-info
/.idea
/.vscode
*/*.yml
*/*.json
*.pyc
.DS_Store
crashes
accounts
!config-examples/*
!test_*.py
Pipfile
Pipfile.lock
*.pdf
*.mp4
*.log*
*.ini
*.db
Loading