All Projects → s1s1ty → Go Mysql Crud

s1s1ty / Go Mysql Crud

Example crud operation using Golang and MySql

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Go Mysql Crud

Uwsgi Nginx Flask Docker
Docker image with uWSGI and Nginx for Flask applications in Python running in a single container. Optionally with Alpine Linux.
Stars: ✭ 2,607 (+1043.42%)
Mutual labels:  webapp
Webperl
Run Perl in the browser with WebPerl!
Stars: ✭ 221 (-3.07%)
Mutual labels:  webapp
Journal Aws Amplify Tutorial
Step by step tutorial to build a personal journal web app with aws-amplify
Stars: ✭ 227 (-0.44%)
Mutual labels:  webapp
Colllect
Your visual bookmark manager
Stars: ✭ 216 (-5.26%)
Mutual labels:  webapp
Cloudtunes
Web-based music player for the cloud ☁️ 🎶 Play music from YouTube, Dropbox, etc.
Stars: ✭ 2,449 (+974.12%)
Mutual labels:  webapp
Spacy Api Docker
spaCy REST API, wrapped in a Docker container.
Stars: ✭ 222 (-2.63%)
Mutual labels:  restful-api
Grapefruit.vucore
A front-background project using ASP.NET Core WebApi and Vue.js
Stars: ✭ 210 (-7.89%)
Mutual labels:  restful-api
Aws S3 Proxy
Reverse proxy for AWS S3 with basic authentication.
Stars: ✭ 227 (-0.44%)
Mutual labels:  webapp
Meemooapp
Creative apps to use, build, share, and hack in the browser.
Stars: ✭ 220 (-3.51%)
Mutual labels:  webapp
Appy
🚀 A full stack boilerplate web app
Stars: ✭ 225 (-1.32%)
Mutual labels:  webapp
Node Red Contrib Uibuilder
Easily create data-driven web UI's for Node-RED using any (or no) front-end library. VueJS and bootstrap-vue included but change as desired.
Stars: ✭ 215 (-5.7%)
Mutual labels:  webapp
Cartoonize
A demo webapp to convert images and videos into cartoon!
Stars: ✭ 215 (-5.7%)
Mutual labels:  webapp
Digital Restaurant
DDD. Event sourcing. CQRS. REST. Modular. Microservices. Kotlin. Spring. Axon platform. Apache Kafka. RabbitMQ
Stars: ✭ 222 (-2.63%)
Mutual labels:  restful-api
Wam
Web App Monitor
Stars: ✭ 216 (-5.26%)
Mutual labels:  webapp
Sinn Server
an node server for sinn,that based on of nodejs,koa2,mongoose,docker,nginx,es6/7,Resful API,阿里云 http://servertest.boyagirl.com/
Stars: ✭ 228 (+0%)
Mutual labels:  restful-api
Cloudopt Next
A simple and modern Java and Kotlin vert.x web framework
Stars: ✭ 211 (-7.46%)
Mutual labels:  restful-api
Titan
Create Discord server widgets for websites of all sizes! A simple to setup process for end-users. Server members may view or send messages into an embedded Discord channel.
Stars: ✭ 221 (-3.07%)
Mutual labels:  webapp
Wave
Realtime Web Apps and Dashboards for Python and R
Stars: ✭ 2,774 (+1116.67%)
Mutual labels:  webapp
Meemo
Meemo - Your personal notes
Stars: ✭ 227 (-0.44%)
Mutual labels:  webapp
Canner
⚡️[NOT MAINTAINED] Content Management Framework creates custom CMS fast and easy. Support data sources such as Firebase/Firestore, GraphQL and Restful APIs.
Stars: ✭ 2,472 (+984.21%)
Mutual labels:  restful-api

go-mysql-crud

Sample crud operation using Golang and MySql

API ENDPOINTS

All Posts

  • Path : /posts
  • Method: GET
  • Response: 200

Create Post

  • Path : /posts
  • Method: POST
  • Fields: title, content
  • Response: 201

Details a Post

  • Path : /posts/{id}
  • Method: GET
  • Response: 200

Update Post

  • Path : /posts/{id}
  • Method: PUT
  • Fields: title, content
  • Response: 200

Delete Post

  • Path : /posts/{id}
  • Method: DELETE
  • Response: 204

Required Packages

Quick Run Project

First clone the repo then go to go-mysql-crud folder. After that build your image and run by docker. Make sure you have docker in your machine.

git clone https://github.com/s1s1ty/go-mysql-crud.git

cd go-mysql-crud

chmod +x run.sh
./run.sh

docker-compose up
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].