GameKeyManager/README.md

189 lines
5.2 KiB
Markdown
Raw Normal View History

2025-04-26 12:32:07 +00:00
# 🔑 Game Key Manager 🔑
2025-04-21 11:06:38 +00:00
2025-04-26 12:32:07 +00:00
## 👋 Welcome! 👋
2025-04-21 12:41:04 +00:00
This project helps you keep track of your collected game keys.
2025-04-21 12:26:33 +00:00
No more confusion about whether a key is redeemed, gifted, or still unused now you have everything in one place, with search, status, and even automatic Steam cover images!
2025-04-21 11:06:38 +00:00
2025-04-26 12:32:07 +00:00
It's even possible to gift your keys via a unique website. Just edit the game to "Gifted" and you'll get a option to copy the on your overview page. (maybe HTTPS only)
(the link will also remain in the edit area)
![Screenshot](GameManager.png)
2025-04-21 12:41:04 +00:00
---
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
## ✨ Features ✨
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
- **Key Management:**
2025-04-26 12:32:07 +00:00
Enter your game keys, the corresponding game, platform, and maybe where you got the key.
2025-04-21 12:41:04 +00:00
- **Status Tracking:**
Mark keys as "Redeemed", "Gifted" or "Available" always know your status.
- **Shop URL & Steam Cover:**
Save the shop URL and (optionally) the Steam AppID. The app will automatically show the official Steam cover image if available.
2025-04-26 12:32:07 +00:00
- **Gift your Games:**
You can create a unique redeem/gift website, which will expire after 24h.
2025-04-21 12:41:04 +00:00
- **Multi-user:**
Each user manages their own keys.
2025-04-26 12:32:07 +00:00
- **Enable/Disable Registrations:**
Perfect if you want to run the Server just on your own (via .env file)
- **Search:**
2025-04-21 12:41:04 +00:00
Find games quickly with the search function.
- **Responsive UI:**
Works on desktop and mobile, with Dark Mode toggle.
- **Multi-language:**
2025-04-26 12:32:07 +00:00
Switch between English and German instantly*.
- **Import/Export (CSV / PDF -only export-):**
Easy export and import of your keys. (e.g. in case you have to start over)
- **Change Password:**
Change your Password on the fly.
- **Website Security:**
You can turn on/off CSRF and Secure Cookie via .env file.
- **Notifications:**
If you have key that have to be redeemed before a specific date. You can set up sending messages via, Pushover, Matrix and Gotify
2025-04-21 12:41:04 +00:00
- **No key data leaves your server!**
- **(Planned):**
2025-04-26 12:32:07 +00:00
- ~~Import/Export (CSV)~~
- ~~Redeem site with unique sharing link~~
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
---
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
## 🚀 Get Started! 🚀
2025-04-21 11:06:38 +00:00
2025-04-29 12:00:40 +00:00
## 1. **Clone the Repository (Option 1 or Option 2)**
### Option 1: Clone the main repository
```bash
git clone https://codeberg.org/nocci/GameKeyManager
cd steam-gift-manager
```
### Option 2: Clone from alternative repository (if option 1 fails)
2025-04-22 09:06:32 +00:00
2025-04-22 09:08:43 +00:00
```bash
2025-04-26 12:32:07 +00:00
git clone https://git.nocci.it/nocci/GameKeyManager
2025-04-21 13:24:57 +00:00
```
2025-04-22 09:06:32 +00:00
2025-04-21 12:41:04 +00:00
### 2. **Setup Docker**
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
Make sure you have [Docker](https://www.docker.com/) and [docker-compose](https://docs.docker.com/compose/) installed.
2025-04-26 12:32:07 +00:00
If not, the script will ask you what to do and can install Docker and docker-compose for you. (maybe not if you are running Arch)
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
### 3. **Initial Setup**
2025-04-22 09:06:32 +00:00
2025-04-22 09:08:43 +00:00
```bash
2025-04-21 12:26:33 +00:00
chmod +x setup.sh
./setup.sh
2025-04-21 13:26:09 +00:00
```
2025-04-21 12:41:04 +00:00
2025-04-21 12:26:33 +00:00
This script prepares all directories, configuration, and translation files.
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
### 4. **Build and Start the App**
2025-04-22 09:06:32 +00:00
2025-04-22 09:08:43 +00:00
```bash
2025-04-21 12:41:04 +00:00
cd steam-gift-manager/
2025-04-21 12:26:33 +00:00
docker-compose build --no-cache
docker-compose up -d
2025-04-21 13:26:09 +00:00
```
2025-04-21 12:41:04 +00:00
2025-04-26 12:32:07 +00:00
### 5. **Edit your .env file to your liking**
It's in your root folder of the installation!
```xml
2025-04-28 10:19:56 +00:00
# Security
2025-04-26 12:32:07 +00:00
SESSION_COOKIE_SECURE="True" (only works if you run this app via HTTPS)
CSRF_ENABLED="True"
```
**Important after any(!) change of the .env file!**
```bash
cd steam-gift-manager/
docker-compose down && docker-compose up -d --build
```
### 6. **Initialize and Edit Translations (Optional)**
2025-04-22 09:06:32 +00:00
2025-04-22 09:08:43 +00:00
```bash
2025-04-21 12:26:33 +00:00
./translate.sh
2025-04-21 13:26:09 +00:00
```
2025-04-22 09:06:32 +00:00
2025-04-26 12:32:07 +00:00
Edit the .po files in translations/de_DE/LC_MESSAGES/messages.po and en_US/LC_MESSAGES/messages.po
2025-04-22 09:06:32 +00:00
2025-04-22 09:08:43 +00:00
```bash
2025-04-21 12:26:33 +00:00
./translate.sh
2025-04-21 12:41:04 +00:00
cd steam-gift-manager/
2025-04-26 12:32:07 +00:00
docker-compose down && docker-compose up -d --build
2025-04-21 13:26:09 +00:00
```
2025-04-21 11:06:38 +00:00
2025-04-26 12:32:07 +00:00
### 7. **Open the App**
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
Go to [http://localhost:5000](http://localhost:5000) in your browser.
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
- Register your first user.
2025-04-26 12:32:07 +00:00
- Add your keys, shop URLs etc.
2025-04-21 12:41:04 +00:00
- Enjoy search, status, and automatic Steam cover images!
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
---
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
## 🛠️ Technology Stack 🛠️
2025-04-21 11:06:38 +00:00
2025-04-26 12:32:07 +00:00
- **Frontend:** Bootstrap 5, Jinja2 Templates ...
2025-05-01 15:22:47 +00:00
- **Backend:** Python 3, Flask, Flask-Babel, Flask-Login, Flask-SQLAlchemy, Apprise ...
2025-04-21 12:41:04 +00:00
- **Database:** SQLite (persisted in `data/`)
- **Containerization:** Docker, docker-compose
2025-04-26 12:32:07 +00:00
- **Translations:** Flask-Babel, editable `.po` files in `translations/`
2025-04-21 11:06:38 +00:00
2025-04-21 12:41:04 +00:00
## 🌍 Multi-language
2025-04-21 12:26:33 +00:00
2025-04-21 12:41:04 +00:00
- Switch between English and German using the dropdown in the navigation bar.
2025-04-26 12:32:07 +00:00
- All game and menu texts can be translated or individualized.
## 🔔 Notifications
- Send notifications if a game has to be redeemed by a specific date
2025-05-01 15:22:47 +00:00
- Switched from generic notifications to [Apprise](https://github.com/caronc/apprise) - have a look into the .env file
- 48 hours before you are running out of time the app will send you a notice to your services
2025-04-26 12:32:07 +00:00
---
## 🪙 Do you this project? 🪙
If youd like to support itme, you can make a donation here:
[![Ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/nocci)
[![Liberapay](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/nocci/donate)
Thank you!
2025-04-21 12:26:33 +00:00
2025-04-21 12:41:04 +00:00
---
## 🙌 Contribute! 🙌
2025-04-21 12:26:33 +00:00
2025-04-26 12:32:07 +00:00
This project is open source!
2025-04-21 12:26:33 +00:00
2025-04-21 12:41:04 +00:00
- **Bug Reports:** Please report bugs as Issues.
- **Feature Requests:** Suggest new features!
- **Pull Requests:** Submit your code changes!
2025-04-26 12:32:07 +00:00
// **only possible after Forgejo opens for federation** \\\
2025-04-21 12:41:04 +00:00
---
2025-04-21 12:26:33 +00:00
2025-04-21 12:41:04 +00:00
## 📜 License 📜
2025-04-21 12:26:33 +00:00
2025-04-21 13:44:17 +00:00
This project is licensed under the [Apache License 2.0](LICENSE).
2025-04-21 12:26:33 +00:00
2025-04-21 12:41:04 +00:00
---
2025-04-21 12:26:33 +00:00
2025-04-21 12:41:04 +00:00
## 💖 Acknowledgements 💖
2025-04-21 12:26:33 +00:00
2025-04-21 11:06:38 +00:00
A big thank you to everyone who supports and contributes to this project!
2025-04-21 12:26:33 +00:00
2025-04-21 12:41:04 +00:00
---
2025-04-26 12:32:07 +00:00
**Enjoy your organized Game key collection!** 🚀