{"id":20259421,"url":"https://github.com/letsila/simple-go-crud","last_synced_at":"2026-06-23T03:31:35.483Z","repository":{"id":121498900,"uuid":"116831692","full_name":"letsila/simple-go-crud","owner":"letsila","description":"A very simple Go application CRUD (without the U)","archived":false,"fork":false,"pushed_at":"2018-01-09T15:26:54.000Z","size":5,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-27T09:45:19.262Z","etag":null,"topics":["crud","golang","mysql","webapps"],"latest_commit_sha":null,"homepage":"","language":"Go","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/letsila.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":"2018-01-09T15:10:49.000Z","updated_at":"2018-12-04T16:23:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"793c4d2e-5f08-4dac-8562-26d9df5ffa7c","html_url":"https://github.com/letsila/simple-go-crud","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/letsila/simple-go-crud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/letsila%2Fsimple-go-crud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/letsila%2Fsimple-go-crud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/letsila%2Fsimple-go-crud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/letsila%2Fsimple-go-crud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/letsila","download_url":"https://codeload.github.com/letsila/simple-go-crud/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/letsila%2Fsimple-go-crud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34674702,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["crud","golang","mysql","webapps"],"created_at":"2024-11-14T11:14:37.672Z","updated_at":"2026-06-23T03:31:35.468Z","avatar_url":"https://github.com/letsila.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# README #\n\n### What is this repository for? ###\n\nThis is a simple Go webapp, just to taste the interaction of MySQL with Go.\n\n### Dependencies ###\n\nYou need to install the go-sql-driver from inside your workspace with the following command.\n\n```bash\n$ go get -u github.com/go-sql-driver/mysql\n```\n\n### Database setup ###\n\nThis project uses MySQL. Then, you need to specify your database parameters in the `config.json` file at the root of the project folder.\nCreate a table named \"todos\" with the following structure.\n\n```sql\nCREATE TABLE `todos` (\n  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,\n  `title` varchar(255) DEFAULT '',\n  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;\n```\n\n### Running ###\n\nFrom the root of the project, run the following command\n\n```bash\n$ go run server.go\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fletsila%2Fsimple-go-crud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fletsila%2Fsimple-go-crud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fletsila%2Fsimple-go-crud/lists"}