diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 00000000..b11eafde
Binary files /dev/null and b/.DS_Store differ
diff --git a/README.md b/README.md
index 1613a3b0..1dd9312e 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,11 @@
# 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.
+The goal of this project was to create and tracker about all m git hub repositories using API.
## 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?
+The main challenge was to implement the requests.
## 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://upbeat-ritchie-526f8b.netlify.app
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..3e5e23c3 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -2,3 +2,27 @@
const ctx = document.getElementById('chart').getContext('2d')
//"Draw" the chart here 👇
+
+const drawChart = (amount) =>{
+ const config = {
+ type: 'doughnut',
+ data: {
+ labels: [
+ 'Completed Projects',
+ 'Remaining Projects',
+ ],
+ datasets: [{
+ label: 'My First Dataset',
+ data: [amount , 20-amount],
+ backgroundColor: [
+ 'rgb(255, 192, 203)',
+ 'rgb(135,190,231)'
+
+ ],
+ hoverOffset: 4
+ }]
+ },
+
+ };
+ const myChart = new Chart(ctx, config)
+}
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..1e0a2087 100644
--- a/code/index.html
+++ b/code/index.html
@@ -4,16 +4,20 @@
-