{"id":23519766,"url":"https://github.com/ramonbecker/appcharts","last_synced_at":"2025-05-14T01:14:44.587Z","repository":{"id":246042549,"uuid":"372865872","full_name":"RamonBecker/AppCharts","owner":"RamonBecker","description":null,"archived":false,"fork":false,"pushed_at":"2021-06-01T19:19:20.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-25T16:10:24.304Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RamonBecker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-06-01T14:49:50.000Z","updated_at":"2021-06-01T19:19:22.000Z","dependencies_parsed_at":"2024-06-25T14:44:04.668Z","dependency_job_id":"6d9c78a6-3a5c-4307-83cd-bb027efeb320","html_url":"https://github.com/RamonBecker/AppCharts","commit_stats":null,"previous_names":["ramonbecker/appcharts"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2FAppCharts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2FAppCharts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2FAppCharts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2FAppCharts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RamonBecker","download_url":"https://codeload.github.com/RamonBecker/AppCharts/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239207413,"owners_count":19599966,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-25T16:10:25.850Z","updated_at":"2025-02-16T23:13:40.183Z","avatar_url":"https://github.com/RamonBecker.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Charts\n## :information_source: Information \n\nThe project aims to demonstrate a simple chart generation using the Chart.js library. For more information on using the library, visit: https://www.chartjs.org/docs/latest/. The random library was used to generate the data in the graph.\n\n## ⚠️ Prerequisite\n\n![](https://img.shields.io/badge/Bootstrap-563D7C?style=for-the-badge\u0026logo=bootstrap\u0026logoColor=white)\n\n![](https://img.shields.io/badge/Python-3776AB?style=for-the-badge\u0026logo=python\u0026logoColor=white)\n\n![](https://img.shields.io/badge/Django-092E20?style=for-the-badge\u0026logo=django\u0026logoColor=white)\n\n![](https://img.shields.io/badge/MySQL-00000F?style=for-the-badge\u0026logo=mysql\u0026logoColor=white)\n\n![](https://img.shields.io/badge/jQuery-0769AD?style=for-the-badge\u0026logo=jquery\u0026logoColor=white)\n\n![](https://img.shields.io/badge/ChartJS-FF6384?style=for-the-badge\u0026logo=chart-dot-js\u0026logoColor=white)\n\n## Demo\n\n![grafico](https://user-images.githubusercontent.com/44611131/120378359-b33f2200-c2f4-11eb-8b11-9f708f461dd3.png)\n\n## ⚙️ Creating virtual machine\n\nCreate your virtual machine\n```\npython3 -m venv venv\n```\nActivate your virtual machine\n```\nsource venv/bin/activate\n```\nAfter the virtual machine is activated, install the project dependencies\n```\npip install -r requirements.txt```\n```\n\n## ⚙️ Installing MySQL\n\nEnter the following commands in the terminal.\n\n```\nsudo apt update\nsudo apt install mysql-server\n\n```\n### Configuring MySQL\n\nFor new installations, you will want to run the security script that is included. This changes some of the less secure default options for things like root logins and example users. Enter the command below.\n\n```\nsudo mysql_secure_installation\n```\nThis will take you through a series of prompts where you can make some changes to the security options of your MySQL installation. The first prompt will ask you if you want to configure the Validate Password Plugin, which can be used to test the strength of your MySQL password. Regardless of your choice, the next prompt will be to set the password for the MySQL root user. Sign in and then confirm a secure password of your choice.\n\nFrom there, you can press Y and then ENTER to accept the default answers for all subsequent questions. This will remove some anonymous users and the test database, disable remote login for root, and load all of these new rules so that MySQL immediately respects the changes you made.\n\n### Testing MySQL\n\nTo see if MYSQL is running, type the following command.\n\n```\nsystemctl status mysql.service\n```\n\nIf MySQL is not running, you can start it with the following command.\n```\nsudo systemctl start mysql\n```\nNow try to connect your root user to MySQL.\n```\nmysql -u root -p\n```\n## :rocket: Installation\n\n![](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge\u0026logo=linux\u0026logoColor=black)\n\n```sh\ngit clone https://github.com/RamonBecker/AppCharts.git\n```\n\n![](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge\u0026logo=windows\u0026logoColor=white)\n\n\n```sh\ngit clone https://github.com/RamonBecker/AppCharts.git\nor install github https://desktop.github.com/ \n\n```\n\n## :zap: Technologies\t\n\n- Python\n- Chart.js\n- JQuery\n\n\n\n\n## :memo: Developed features\n\n- [x] Generating data in the chart;\n- [x] Graph creation for the generated data.\n\n\n## :technologist:\t Author\n\nBy Ramon Becker 👋🏽 Get in touch!\n\n\n\n[\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/github.svg' alt='github' height='40'\u003e](https://github.com/RamonBecker)  [\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/linkedin.svg' alt='linkedin' height='40'\u003e](https://www.linkedin.com/in/https://www.linkedin.com/in/ramon-becker-da-silva-96b81b141//)\n![Gmail Badge](https://img.shields.io/badge/-ramonbecker68@gmail.com-c14438?style=flat-square\u0026logo=Gmail\u0026logoColor=white\u0026link=mailto:ramonbecker68@gmail.com)\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framonbecker%2Fappcharts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Framonbecker%2Fappcharts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framonbecker%2Fappcharts/lists"}