Categorygithub.com/bburaksseyhan/todo-api
module
0.0.0-20211115162838-342cda44c3f4
Repository: https://github.com/bburaksseyhan/todo-api.git
Documentation: pkg.go.dev

# README

Go Doc Go Report Card GitHub stars

todo-api

run on docker :ship:

 docker-compose up -d  
 docker exec -it cassandra cqlsh; 
Screen Shot 2021-11-08 at 15 46 57
CREATE KEYSPACE todo WITH replication = {'class':'SimpleStrategy', 'replication_factor' : 1};
use todo

create table todo (id text primary key, title text, content text);

select * from todo

used packages :package:

  • Web framework: go get -u github.com/gin-gonic/gin
  • Read Configuration file : go get -u github.com/spf13/viper
  • Logging : go get -u github.com/sirupsen/logrus
  • Cassandra : go get -u github.com/gocql/gocql

documentation: Related Post. :pencil2: :book:

# Packages

No description provided by the author