Skip to content

Commit

Permalink
Made neccessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kiruthikpurpose committed Sep 30, 2024
1 parent 59f670c commit 7110ff3
Show file tree
Hide file tree
Showing 8 changed files with 138 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


__pycache__/
*.pyc
config/.env
9 changes: 9 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Contributing to Gitex Bot

Thank you for considering contributing to Gitex Bot! We appreciate your interest and welcome contributions from everyone. Please follow the guidelines below to ensure a smooth collaboration.

## How to Contribute

### Reporting Issues

If you encounter any bugs or have feature requests, please open an issue in the [GitHub Issues](https://github.com/ragul-rofi/GitexTelegramBot/issues) section. Provide as much detail as possible, including steps to reproduce, expected behavior, and actual behavior.
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
MIT License

Copyright (c) 2024 Ragul Arumugam
Copyright (c) 2024 Kiruthik

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,24 @@ The bot is deployed on Render for continuous operation. To deploy your bot on Re

## Usage

- Start the bot by typing `/start` in your Telegram chat with the bot.
- Enter your project idea or query, and the bot will return a list of GitHub repositories that match your query.
1. **Start the Bot**: Type `/start` in your Telegram chat with Gitex Bot to begin.
2. **Share Your Idea**: Enter your project idea or query to find relevant repositories.
3. **Get Results**: The bot will return a list of GitHub repositories that match your request.

---

## Contributing

Feel free to open issues or submit pull requests for improvements and features.
Contributions are welcome! Here’s how you can help:

- **Report Issues**: If you find a bug or have a suggestion, open an issue in the repository.
- **Submit Pull Requests**: Feel free to fork the repository, make improvements, and submit a pull request.

Your help is appreciated!

---

## License

This project is licensed under the MIT License.
This project is licensed under the MIT License. You can use, modify, and distribute it freely, as long as you retain the original copyright and license notices.

Binary file added images/BotFavicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/BotLogo.webp
Binary file not shown.
30 changes: 30 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gitex Bot</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" href="images/BotFavicon.png" type="image/png">
</head>
<body>
<div class="container">
<img src="images/BotLogo.webp" alt="Bot Logo" class="bot-logo">
<h1>Gitex Bot</h1>
<p>Discover GitHub repositories through Telegram!</p>
<div class="links">
<a href="https://t.me/RepoGitEX_BOT" class="button telegram">
<img src="https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg" alt="Telegram Logo" class="logo">
Launch Gitex Bot
</a>
<a href="https://github.com/ragul-rofi/GitexTelegramBot" class="button github">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg" alt="GitHub Logo" class="logo">
View on GitHub
</a>
</div>
</div>
</body>
</html>
83 changes: 83 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: 'Roboto', sans-serif;
background-color: #121212;
color: #e0e0e0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.container {
text-align: center;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
background-color: #1e1e1e;
max-width: 400px;
}

.bot-logo {
width: 250px;
height: auto;
border-radius: 15px;
margin-bottom: 15px;
border: 2px solid #e0e0e0;
}

h1 {
color: #fff;
margin-bottom: 15px;
}

p {
font-size: 16px;
color: #b0b0b0;
margin-bottom: 30px;
}

.links {
display: flex;
flex-direction: column;
gap: 15px;
}

.button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 20px;
border-radius: 5px;
text-decoration: none;
font-weight: 700;
color: white;
transition: background-color 0.3s;
}

.telegram {
background-color: #0088cc;
}

.github {
background-color: #4f545c;
}

.logo {
width: 20px;
height: 20px;
margin-right: 10px;
}

.telegram:hover {
background-color: #0072a8;
}

.github:hover {
background-color: #3a3f44;
}

0 comments on commit 7110ff3

Please sign in to comment.