{"id":22126073,"url":"https://github.com/gustavo-developer/crudimpacta","last_synced_at":"2025-07-23T10:37:19.777Z","repository":{"id":108551297,"uuid":"529018273","full_name":"Gustavo-Developer/CrudImpacta","owner":"Gustavo-Developer","description":"CRUD Desenvolvido durante as aulas da faculdade impacta","archived":false,"fork":false,"pushed_at":"2022-10-03T11:15:45.000Z","size":1432,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-29T13:44:15.478Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/Gustavo-Developer.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":"2022-08-25T21:06:43.000Z","updated_at":"2022-09-02T01:09:13.000Z","dependencies_parsed_at":"2023-04-29T11:35:07.406Z","dependency_job_id":null,"html_url":"https://github.com/Gustavo-Developer/CrudImpacta","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gustavo-Developer%2FCrudImpacta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gustavo-Developer%2FCrudImpacta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gustavo-Developer%2FCrudImpacta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gustavo-Developer%2FCrudImpacta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Gustavo-Developer","download_url":"https://codeload.github.com/Gustavo-Developer/CrudImpacta/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245232920,"owners_count":20581703,"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-01T16:50:04.462Z","updated_at":"2025-03-24T08:18:10.944Z","avatar_url":"https://github.com/Gustavo-Developer.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  Sistema de  Gerenciamento  🚀\n  \u003cbr\u003e\n  \u003cbr\u003e\n\n\u003c/p\u003e\n\n## Mock MySQL Database\n\n```bash\nCREATE DATABASE IF NOT EXISTS impactaSistema;\n\nSELECT * FROM clientes;\n\nUSE impactaSistema;\nCREATE TABLE IF NOT EXISTS clientes\n(\nid INT AUTO_INCREMENT PRIMARY KEY,\nnome VARCHAR(70) NOT NULL,\ncpf VARCHAR(70) NOT NULL,\nnascimento VARCHAR(70) NOT NULL,\nendereco VARCHAR(70) NOT NULL,\ncidade VARCHAR(70) NOT NULL\n);\n\n\nINSERT INTO clientes ( nome,cpf, nascimento, endereco, cidade)\nVALUES ('Gustavo Mendes','123.542.678-01','07/07/2002','Rua dos bobos, Nº0','São Paulo');\nINSERT INTO clientes ( nome,cpf, nascimento, endereco, cidade)\nVALUES ('Renata Santos','123.542.354-01','07/07/2002','Rua dos bobos, Nº0','Ceara');\nINSERT INTO clientes ( nome,cpf, nascimento, endereco, cidade)\nVALUES ('Carla Souza','345.542.678-01','07/07/2002','Rua dos bobos, Nº0','Rio de Janeiro');\nINSERT INTO clientes ( nome,cpf, nascimento, endereco, cidade)\nVALUES ('Debora mato','123.456.678-01','07/07/2002','Rua dos bobos, Nº0','São Paulo');\n\nUSE impactaSistema;\nCREATE TABLE IF NOT EXISTS fornecedores\n(\nid INT AUTO_INCREMENT PRIMARY KEY,\nnome VARCHAR(70) NOT NULL,\ncnpj VARCHAR(70) NOT NULL,\nendereco VARCHAR(70) NOT NULL,\ncidade VARCHAR(70) NOT NULL\n);\n\n\nINSERT INTO fornecedores ( nome, cnpj, endereco, cidade)\nVALUES ('AM Materiais','25.367.578/0001-01','Rua dos bobos, Nº0','São Paulo');\n\nINSERT INTO fornecedores ( nome, cnpj,  endereco, cidade)\nVALUES ('Contruções LT','92.103.798/0001-15','Rua dos bobos, Nº0','Ceara');\n\nINSERT INTO fornecedores ( nome, cnpj, endereco, cidade)\nVALUES ('Seven Mateirais','92.103.798/0001-15','Rua dos bobos, Nº0','Rio de Janeiro');\n\nINSERT INTO fornecedores ( nome, cnpj, endereco, cidade)\nVALUES ('Casa da Ferragem','59.631.713/0001-04','Rua dos bobos, Nº0','São Paulo');\n\nSELECT * FROM fornecedores;\nDROP TABLE impactaSistema.fornecedores;\n```\n\n## :checkered_flag: Começando\n\n```bash\n# Clone this project\n$ git clone https://github.com/Gustavo-Developer/CrudImpacta\n\n# Access\n$ cd CrudImpact\n\n# Install dependencies\n$ npm i\n\n# Start Aplication\n$ npm run start\n\n```\n\n## :framed_picture: Imagens\n\n\u003ch1 align=\"center\"\u003e\n    \u003cimg alt = \"Web app\" src = \"./.github/home.png\" width = \"100%\" /\u003e\n\u003c/h1\u003e# Sistema de gerenciamento\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgustavo-developer%2Fcrudimpacta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgustavo-developer%2Fcrudimpacta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgustavo-developer%2Fcrudimpacta/lists"}