Skip to content

Commit

Permalink
Comply with markdown-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayurifag committed Sep 10, 2024
1 parent 7a39769 commit 96ed6eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
13 changes: 3 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,17 @@ A versatile Telegram bot for managing and organizing sticker packs.

## Installation

1. Clone the repository:
Clone the repository:

```sh
git clone https://github.com/yourusername/telegram-stickers-organizer.git
cd telegram-stickers-organizer
```

2. Install dependencies:
Install dependencies and copy `.env` config:

```sh
uv venv
uv pip install -r requirements.txt
```

3. Set up environment variables:

```sh
cp .env.example .env
make provision
```

Edit the `.env` file and add your Telegram Bot Token and other required
Expand Down
5 changes: 5 additions & 0 deletions makefiles/uv.mk
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ add: install
remove:
uv remove $(ARGS)

.PHONY: provision
provision:
uv sync
cp .env.example .env

.PHONY: start
start: start-ngrok
@if [ ! -f .env ]; then cp .env.example .env; echo "Created .env file, edit it and run "make start" again"; exit 1; fi
Expand Down

0 comments on commit 96ed6eb

Please sign in to comment.