https://github.com/Luna-devv/mellow-a7s
Wamellow boat analytics (a7s) engine
https://github.com/Luna-devv/mellow-a7s
a7s analytics bot discord statistics
Last synced: 12 months ago
JSON representation
Wamellow boat analytics (a7s) engine
- Host: GitHub
- URL: https://github.com/Luna-devv/mellow-a7s
- Owner: Luna-devv
- Created: 2023-12-11T14:36:09.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-06-21T14:49:18.000Z (12 months ago)
- Last Synced: 2025-06-28T10:31:02.874Z (12 months ago)
- Topics: a7s, analytics, bot, discord, statistics
- Language: Go
- Homepage: https://wamellow.com
- Size: 35.2 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
[](https://lunish.nl/support)

[](https://ko-fi.com/I3I6AFVAP)
**⚠️ In development, breaking changes ⚠️**
## About
This is the analytics engine for the [wamellow.com](https://wamellow.com) discord bot, tracking command usage by command name, tracking and users.
If you need help using this, join **[our Discord Server](https://discord.com/invite/yYd6YKHQZH)**.
## Setup
Clone this repo with the following commands:
```bash
git clone https://github.com/Luna-devv/nekostic
```
Create a `.env` file and add the following values:
```env
REDIS_PW=""
REDIS_ADDR="127.0.0.1:6379"
REDIS_USR=""
PORT="3000"
```
Change the ports and/or add a user and/or password if your redis instance requires one. **This uses redis as a persistent database**, learn more on the [redis persistence documentation](https://redis.io/docs/management/persistence/) on how to make your deployment persistent.
## Deploy
Since docker is the best thing that exists for managing deployments, it's the thing we use. If you don't want to use docker, install the go programing language from [go.dev](https://go.dev) and run `go run .` or however you want to run it.
To build the docker container run
```bash
docker build -t nekostic .
```
To start the docker container (detached) run
```bash
docker compose up -d
```