Skip to content

Commit

Permalink
feat: add makefile to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Robso-creator committed Jan 24, 2024
1 parent 31b49b2 commit 3bc8ad4
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
all:
@echo "#### functions implemented"
@echo "make up ...................... runs main.py"
@echo "make pc ...................... runs pre-commit on all files"

pc:
@echo "[PRE-COMMIT] All files"
pre-commit run --all-files

up:
python3 -m src.main
1 change: 1 addition & 0 deletions docs/README-en.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
![makefile](https://img.shields.io/badge/makefile-enabled-brightgreen?logo=gmail&logoColor=blue)

# Discord Bot
<sub>Não fala inglês? [Clique aqui](https://github.com/Robso-creator/discord_bot/blob/main/README.md) para ver esta página em português</sub>
Expand Down
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
![makefile](https://img.shields.io/badge/makefile-enabled-brightgreen?logo=gmail&logoColor=blue)

# Bot do Discord
<sub>Don't speak portuguese? [Click here](https://github.com/Robso-creator/discord_bot/blob/main/README-en.md) to view this page in English</sub>
Expand Down
File renamed without changes.
Empty file added src/__init__.py
Empty file.
1 change: 1 addition & 0 deletions src/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import random

import discord

import settings

intents = discord.Intents.default()
Expand Down

0 comments on commit 3bc8ad4

Please sign in to comment.