diff --git a/README.md b/README.md
index 1613a3b0..494f4d16 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,25 @@
# GitHub Tracker
-Replace this readme with your own information about your project.
+This project is all about working with the Github-API.
+
+The tracker shows
+- username/pic
+- all the repos that are done by me during the Technigo bootcamp
+- no. of commits and commit messages for each repository
+- a doughnut pie from chart.js
+
+
-Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
## The problem
-Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next?
+I focussed in this project on gaining data from the API and filter/sort it in a way that I get all the entries I want to show in my tracker.
+
+I kept the design simple and made it look close to the original GitHub-website.
+
+If I would have more time, I would like to add "no. of commits" to the sort field and maybe add a search field also.
+
## View it live
-Every project should be deployed somewhere. Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about.
+Take a look at the project here: https://github-tracker-nehrwein.netlify.app/
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..5a399638 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -1,4 +1,34 @@
//DOM-selector for the canvas 👇
const ctx = document.getElementById('chart').getContext('2d')
+
+const drawChart = (doneProjects) => {
+ //config for the the doughnut-chart:
+ const config = {
+ type: 'doughnut',
+ data: {
+ labels: [
+ 'Finished Projects',
+ 'Projects left'
+ ],
+ datasets: [{
+ label: 'My First Dataset',
+ data: [doneProjects, totalProjects - doneProjects],
+ backgroundColor: [
+ 'rgb(120, 129, 131)',
+ 'rgb(198, 207, 215)',
+ ],
+ hoverOffset: 5
+ }],
+ },
+ options: {
+ plugins: {
+ legend: {
+ position: 'right',
+ }
+ }
+ }
+ };
-//"Draw" the chart here 👇
+ //rendering the chart in the browser/ newChart(where to put it, what to put)
+ const chart = new Chart(ctx, config);
+}
\ No newline at end of file
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..2e82cb14 100644
--- a/code/index.html
+++ b/code/index.html
@@ -6,15 +6,28 @@