Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 991 Bytes

README.md

File metadata and controls

53 lines (38 loc) · 991 Bytes

Paimon

Bot that will help to manage Attack on IF group

Getting Started

Prerequisites

Install dependencies

pipenv install --dev --skip-lock 

Run Paimon

TELEGRAM_BOT_TOKEN=<your-telegram-bot-token> pipenv run python -m src.main

Test source code

pipenv run pytest

Using Docker

docker run -e TELEGRAM_BOT_TOKEN=<your-telegram-bot-token> ghcr.io/unsri-hackers/paimon:latest

Branching

  • main used as production only environment
  • dev used as main source in order to start your development

Local Development

In order to contribute to this project, we need to create PR from your local branch to dev

for example

new feature
-> git checkout -b feature/[name]

hotfix
-> git checkout -b hotfix/[name]

issue
-> git checkout -b issue/[issue_number]