You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ Well we all have been working in Open Source and committing various Pull request
14
14
- Real time tracking of commits, PR's and other contributions.
15
15
- Contributors list based on number of PR's, merged pulls and other activities.
16
16
- Contribution history of each contributor.
17
+
can create a badge for your organization.]
18
+
- upload and use the templates
17
19
18
20
The other part of this project includes the “notifying moderator” since we see sometimes that there are many PRs being sent, or issues being opened by various people across the globe but there are limited numbers of maintainers merging the PRs. This way organisations usually lose their potential contributors due to following things:
19
21
@@ -26,9 +28,25 @@ The other part of this project includes the “notifying moderator” since we s
26
28
27
29
For instance, suppose a contributor “X” has been quite active within the community by working on various PRs, opening and resolving various issues, active on chat channels but after a month “X” gets disappeared. So by using this dashboard they will have a badge interface. There will be a badge attached in front of the name of the contributor. Let the name of the badge be “Y” so this badge will have a unique color. So as the time passes like “ a day went, 1 week went, 2 weeks went, a month, etc) this badges will get keep on fading. And Every fade color will have a unique reason. For example, when a contributor made a PR, the badge appeared “Red” in color. This badge will remain in the same color as long as he/she is contributing. Assume that contributor stops contributing and has not contributed for a week so his badge will become green in color. And this will keep on notifying mainaters, Admins about their disappearing. This way the organisations will have greater eye on the contributors and can help them sustain with the community.
**Step 2:-** install frontend dependencies and run frontend server
37
+
``` npm install && npm run serve```
38
+
**Step 3:-** install flask api dependencies and run api
39
+
```
40
+
cd backend
41
+
virtualenv -p python3 venv
42
+
source venv/bin/activate
43
+
pip install -r requirements.txt
44
+
FLASK_APP=run.py flask run
45
+
```
46
+
29
47
## Stack used
30
48
31
-
This will have a dashboard, where these things can be placed. The stack used can be any but since the organisation have fixed stack so its better to stick to Nodejs, Vue, React.
49
+
This will have a dashboard, where these things can be placed. The stack used can be any but since the organisation have fixed stack so its better to stick to Nodejs, Vue, React. Flask is used as an machine learning api.
0 commit comments