diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..58702a2e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+// .gitignore file
+code/secret.js
\ No newline at end of file
diff --git a/README.md b/README.md
index 1613a3b0..40753ace 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,9 @@
# GitHub Tracker
-
-Replace this readme with your own information about your project.
-
-Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
+Assigment: To create a place to keep track of the GitHub repos that I am using at Technigo using JavaScript and API:s.
## 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 had problems with fetching teh commitsamount for my repos since all of them didnt have a pullrequest done by me. I solved it by adding conditional statment to sort out the repos with a pullrequest and only fetcinh the commitamount for them.
## 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.
+https://cocky-lovelace-ac89bc.netlify.app
\ No newline at end of file
diff --git a/code/GitHubMark.png b/code/GitHubMark.png
new file mode 100644
index 00000000..73db1f61
Binary files /dev/null and b/code/GitHubMark.png differ
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..5ba6588d 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -2,3 +2,31 @@
const ctx = document.getElementById('chart').getContext('2d')
//"Draw" the chart here 👇
+const drawChart = (repos) => {
+
+const labels = [
+ 'Completed projects',
+ 'Remaining projects',
+
+ ];
+
+ const data = {
+ labels: labels,
+ datasets: [{
+ label: 'My First dataset',
+ backgroundColor: ['#A9C9FF', '#fde3fb'],
+ borderColor:'pink',
+ data: [repos, 19-repos],
+ }]
+ };
+
+ const config = {
+ type: 'pie',
+ data: data,
+ };
+
+ const myChart = new Chart(
+ document.getElementById('chart'),
+ config
+ );
+}
\ No newline at end of file
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..5dd4644b 100644
--- a/code/index.html
+++ b/code/index.html
@@ -1,21 +1,24 @@
-