Coder Social home page Coder Social logo

boggerbyte / sentinel-backend Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 229 KB

Sentinel is one of [DMS] Discord Moderation Suits bots. It gives modern and robust control of rule breakers and only you can define the punishments

License: MIT License

Makefile 1.66% Go 96.99% HTML 0.55% Dockerfile 0.40% Shell 0.40%
discord discord-bot golang

sentinel-backend's Introduction

Sentinel-backend

API server of [DMS] Sentinel project written on Golang.
Uses gRPC to communicate with Sentinel-discord-bot app.

Build

Create and run the entire backend server using docker-compose.yaml

docker compose up --remove-orphans

Create and run by parts

Building server image

docker build -t sentinel-backend:latest .

Don't forget to set up docker network for all containers

// start postgres container
docker run -d \
    -e POSTGRES_USER='root' \
    -e POSTGRES_PASSWORD='qwerty' \
    -e POSTGRES_DB='sentinel_db' \
    -p 5432:5432 \
    --rm \
    --name=sentinel-db \
    --network=sentinel-network \
    postgres:14.3
    
// migrate db
make migrateup
    
// start redis container
docker run -d \
    -p 6379:6379 \
    --rm \
    --name=sentinel-redis \
    --network=sentinel-network \
    redis /bin/sh -c 'redis-server --appendonly yes --requirepass qwerty'

// start server container
docker run \
    -e DB_HOST=$db_host \
    -e REDIS_HOST=$redis_host \
    -e GIN_MODE='release' \
    -p 8080:8080 \
    --name=sentinel-backend \
    --network=sentinel-network \
    sentinel-backend:latest

Dev

Running dev server.
It is necessary to install tools like golang-migrate, sqlc, gomock.

// generate db queries
make sqlc

// start postgres container
make postgres
make migrateup

// start redis container
make redis

// start server
make server

Testing

// generate db and memory db mocks
make mock

// run tests
make test

sentinel-backend's People

Contributors

boggerbyte avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.