Interactive dashboard for comprehensive analysis of Twitter tweets
We live in a world that contains an overwhelming amount of information, ambiguity, and uncertainty. It is hard to stay up-to-date with current trends and market opinions. To extract only what truly matters, one needs to have tremendous experience, excellent technical skills, and secrifice time and money to get desired insights. That's frustrating.
And we also have been there.
That's why we have created this platform. We hope that with this tool, everyone will escape the information overload, save weeks tracking and searching for inrelevant things, and only focus on most ROI insights from Twitter tweets.
- Django 4.1
- Allauth 0.51
- Datta-able 1.0.9
- Python 3.10
- Numpy 1.23
- Pandas 1.5
- Plotly
- PostgreSQL 14
- Docker
See Projects tab to view Kanban boards with current development progress
You can either use it:
Create an Issue in GitHub and label it as:
- bug -> if it is casual
- hotfix -> if it is critical
Go to Q&A thread in Discussions tab and ask us anything! We are always willing to answer :D
Go to Ideas thread in Discussions tab and explain your idea, maybe we will include it in a future release!
See Documentation for comprehensive information
- Docker
- Make
There are 3 ways to download the repository:
- zip file (not recommended)
- https (most common)
- ssh (recommended)
- Duplicate the .env-example file and rename to
.env
. Fill in the needed environment variables - In the root of the project there are multiple Make commands:
make up
--> to start the appmake stop
--> to stop the appmake down
--> to delete the app (in docker)make logs
--> to view the app activitymake migrate
--> to update the database with all the columns
- When running
make up
the app is running on localhost port 8000 -->127.0.0.1:8000
- Only run
make migrate
when new database columns have been created - The following commands are only for development
make makemigrations
--> to update mirgation files when changes have been mademake db-redeploy
--> to reset the database to a previous state. You need adatabase.bak
in the root of the project, which is a backup of the database.- To get a superuser first run
make shell
and thenpyhton manage.py createsuperuser
#TODO see contributing.md
Work in a way that anyone could take the work after you and progess with it further.
- Create Issue on GitHub and name it concisely (it will be also the name of the branch!)
- Break the task into multiple subtasks by adding "- [ ]" to the description of the issue
- Classify the issue as [
bug
,feature
,documentation
,style
,enhacement
] by assigning appropriate label (only one!). If confused see labels taxonomy. - Assign issue to milestone (Must have, Should have, Could have, Won't have this time)
- Assign issue to project name as the priority you chose in previous step
- Assign yourself to the issue
- Create new branch from Issue using development section in the right sidebar (it will allow automated workflows)
- Name the branch accoriding to naming convention and class you chose in step 2. Example:
feature/ST-32-name-of-your-issue
- Checkout on the branch and do the work
- Make pull request to the DEV branch
- Assign reviewer
- Close pull request with comment (it will automatically close the issue and projects as Done)
-- main
branch is protected you cannot directly push to it, because all merges will trigger Github Action that will build and push Container to production
<class-of-branch>/ST-<issue-number>-<issue-name>
Examples:
feature/ST-31-core-dashboard
hotfix/ST-52-logout-button-not-working
bug/ST-147-dark-theme-not-not-applied-to-sidebar
Branch classification (assign only one)
feature
-> New feature branchstyle
-> Improvements in visuals or code styleenhancement
-> Improvements in existing featuredocumentation
-> Improvements or additions to documentation (Readme, Wiki)hotfix
-> Critical bug (something isn't working on production)bug
-> Non critical bug (will be fixed in one of the future releases)
Claryfing labels
good first issue
-> Good for newcomershelp wanted
-> Extra attention is needed
Closing labels - assign and close issue
invalid
-> This doesn't seem rightwontfix
-> This will not be worked onduplicate
-> This issue or pull request already exists
See Github Wiki