You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
880 B
41 lines
880 B
package db
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/joho/godotenv"
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
"go.mongodb.org/mongo-driver/mongo/options"
|
|
)
|
|
|
|
func init() {
|
|
err := godotenv.Load(".env")
|
|
if err != nil {
|
|
fmt.Println("* No .env file found")
|
|
}
|
|
Connect()
|
|
}
|
|
|
|
var Client *mongo.Client
|
|
|
|
func Connect() {
|
|
dbUsername := os.Getenv("DB_USERNAME")
|
|
dbPassword := os.Getenv("DB_PASSWORD")
|
|
|
|
serverAPIOptions := options.ServerAPI(options.ServerAPIVersion1)
|
|
clientOptions := options.Client().
|
|
ApplyURI("mongodb+srv://" + dbUsername + ":" + dbPassword + "@budgetbuddy.3doyojf.mongodb.net/?retryWrites=true&w=majority").
|
|
SetServerAPIOptions(serverAPIOptions)
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
client, err := mongo.Connect(ctx, clientOptions)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
Client = client
|
|
}
|