Skip to content

Commit

Permalink
clean commit
Browse files Browse the repository at this point in the history
  • Loading branch information
5hojib committed Jan 17, 2025
1 parent b9a7f1f commit cb08164
Show file tree
Hide file tree
Showing 130 changed files with 17,185 additions and 12,336 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ruff_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:

jobs:
code-format:
runs-on: ubuntu-latest
permissions:
contents: write
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
config.env
config.py
*.pyc
data*
.vscode
Expand All @@ -11,11 +11,11 @@ accounts/*
MediaInfo/*
Images/*
Thumbnails/*
tanha/*
rclone/*
tokens/*
list_drives.txt
shorteners.txt
cookies.txt
downloads
bot.session
user.session
terabox.txt
rcl.conf
bot.session*
rclone.conf
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /usr/src/app
RUN chmod 777 /usr/src/app

COPY requirements.txt .
RUN pip3 install --break-system-packages --ignore-installed --no-cache-dir -r requirements.txt
RUN uv pip install --break-system-packages --system --no-cache-dir -r requirements.txt

COPY . .
CMD ["bash", "start.sh"]
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ Follow these steps to deploy Aeon to Heroku:
- **HEROKU_EMAIL**: Email address associated with your Heroku account.
- **HEROKU_API_KEY**: API key from your Heroku account.
- **HEROKU_TEAM_NAME** (Optional): Required only if deploying under a Heroku team account.

4. Run the workflow and wait for it to complete.

### 5. Finalize Setup
Expand All @@ -70,4 +69,8 @@ This project is licensed under the MIT License. Refer to the [LICENSE](LICENSE)
## Acknowledgements

- Special thanks to the original developers of the [Mirror-Leech-Telegram-Bot](https://github.com/anasty17/mirror-leech-telegram-bot).
- Gratitude to contributors from various repositories whose features have been integrated into Aeon.
- Gratitude to contributors from various repositories whose features have been integrated into Aeon.


## Recent activity [![Time period](https://images.repography.com/58464391/AeonOrg/Aeon-MLTB/recent-activity/MUUzwqnoU_5n6kL3Jc8TTWcA3UxPyCHC2emNNSTGJh8/4gYNvj3-wi0i5zQVemeNAbqB7TrkUx_7BxZxhReSIVg_badge.svg)](https://repography.com)
[![Timeline graph](https://images.repography.com/58464391/AeonOrg/Aeon-MLTB/recent-activity/MUUzwqnoU_5n6kL3Jc8TTWcA3UxPyCHC2emNNSTGJh8/4gYNvj3-wi0i5zQVemeNAbqB7TrkUx_7BxZxhReSIVg_timeline.svg)](https://github.com/AeonOrg/Aeon-MLTB/commits)
4 changes: 2 additions & 2 deletions alive.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging
import os
import time
import logging

import requests

Expand All @@ -18,7 +18,7 @@

def check_status():
try:
requests.get(BASE_URL).status_code
requests.get(BASE_URL)
except Exception as e:
logging.error(f"alive.py: {e}")
return False
Expand Down
Loading

0 comments on commit cb08164

Please sign in to comment.