https://github.com/beemi/go-lang-student-service
Student Service using Go Lang & MongoDB
https://github.com/beemi/go-lang-student-service
Last synced: 4 months ago
JSON representation
Student Service using Go Lang & MongoDB
- Host: GitHub
- URL: https://github.com/beemi/go-lang-student-service
- Owner: beemi
- Created: 2023-01-21T10:22:16.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-07T17:03:24.000Z (over 2 years ago)
- Last Synced: 2025-08-03T23:20:24.307Z (10 months ago)
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🌟Student service🌟
This is a simple student service that allows you to create, read, update and delete students using go lang and mongodb.
## Installation
Use the package manager [go](https://golang.org/) to install the student service.
```bash
go get github.com/gorilla/mux
go get go.mongodb.org/mongo-driver/mongo
go get github.com/joho/godotenv
```
## Usage
Run mongodb server on your local machine using the Docker compose file in the root directory.
```bash
docker-compose up -d
```
```bash
go run main.go
```