Skip to content

A simple and Basic project that implements CRUD api using golang

Notifications You must be signed in to change notification settings

Aeres-u99/CRUDGo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRUDGo

A small sample application to perform and check CRUD operations backed by MYSQL

Steps

  1. sudo systemctl start docker
  2. docker compose up
  3. mysql -u root -p pass
  4. create database users_db;
  5. create table users (id int auto_increment primary key, name varchar(100), email varchar(200), age int);
  6. go build main.go
  7. ./main

This should pretty much launch the server on port 8080

Read code to find out supported operations, and dump.json to push the data in the db

About

A simple and Basic project that implements CRUD api using golang

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published