Skip to content

Commit

Permalink
fixing pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tassoman committed Dec 7, 2023
1 parent 031a16d commit fbb7513
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ repos:
entry: pylint
language: system
types: [python]
files: feed_bot.py
# args:
# [
# "-rn", # Only display messages
Expand Down
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Please, follow this instructions once, before starting:
- Visit the page: `https://your.misskey.instance/settings/api`
- Create a new API-key having at minimum `notes:write` privilege.

### Prepare a Python virtual environment
### Prepare a Python virtual environment

Please use python3. In latest GNU/Linux distros, it's already in as default. Otherwise you'll need `python3-venv` package with dependencies.
Please use python3. In latest GNU/Linux distros, it's already in as default. Otherwise you'll need `python3-venv` package with dependencies.

1. `git clone` this repository, to get the source code, or download the zip file
2. `python -m venv .venv` Python sandboxed enviroment creation
Expand All @@ -38,7 +38,7 @@ Now you installed the software, you need a small amount of configuration.

### Fill the bot with RSS feed

First of all, put the RSS Feed source URLS into the file `sources.txt`, line by line.
First of all, put the RSS Feed source URLS into the file `sources.txt`, line by line.

### Environment variables

Expand All @@ -65,7 +65,7 @@ You probably want to run it detached from the console by using `nohup` or runnin

The software has ability to avoid multiple concurrent runs.

## Stop!
## Stop!

To stop it, just press `CTRL+C` in the console.

Expand All @@ -74,3 +74,11 @@ To exit the Python environment type: `deactivate`. You're aware of activation be
## Upgrade

It's super easy, just Stop! Then `git pull` to check for updates. Then `pip-review -a` to update the libraries. Needs a restart to get things done.

## Development

If you plan to contribute, please run this command, after installation noted before.

```bash
pre-commmit install
```

0 comments on commit fbb7513

Please sign in to comment.