SharewareZ transforms any game folder into a dynamic, searchable library. With IGDB integration, it indexes games and adds cover images, screenshots, and metadata for easy filtering. Plus, you can invite friends to download games from your library.
⚠️ THIS IS A BETA APPLICATION - USE AT YOUR OWN RISK ⚠️ When updating from 1.2.1 run the update_game_sizes.py script
🚧 IF YOU HAVE VERSION BELOW 1.2.1, INSTALLED YOU WILL NEED TO RESET YOUR DATABASE OR TAKE CARE OF YOUR OWN MIGRATION 🚧 (run setup_nosmpty.py to recreate your db if needed)
[SharewareZ promotes legal use of its application]
Read these instructions carefully before diving into things :) You can install SharewareZ manually, or use the Docker image. The following instructions are for the manual installation.
Before you start, make sure you have the following prerequisites installed on your system:
Linux: 🐧
Windows: 🪟
First things first, git clone that treasure onto your system: (open a command prompt)
git clone https://github.com/axewater/sharewarez/
cd sharewarez
Let’s get a virtual environment up and running! 🏃♂️ This will keep the libraries used by the app all in 1 place💨
🐧For Linux:
python -m venv venv
source venv/bin/activate
python -m pip install -r requirements.txt
📝Note: You might need to use python3
instead of python in some cases.
🪟 For Windows:
python -m venv venv
.\venv\Scripts\Activate
python -m pip install -r requirements.txt
🤔Remember: If python doesn’t do the trick, try python3!
Time to set up the database where all your game data will live! 🎮📚
🐧For Linux:
sudo apt install postgresql
psql -U postgres -h localhost
CREATE DATABASE sharewarez;
🪟For Windows:
Stack Builder
Add a new server
Databases
and select New Database
Save
or OK
🔧 Alternatively, using command-line:
SQL
psql -U postgres
CREATE DATABASE sharewarez;
📬Why do I need to setup SMTP settings ? ✉️ Mail is required for user self-service. Registration, password resets and the invite system all work by sending 'secure links' to a user's email.
config.example
and rename it to config.py
.🔑 Make sure to add the admin’s email to the INITIAL_WHITELIST
for your admin account! This will be the only email address that can register the first account. The first account is automatically admin.
🔐 Get your IGDB API Keys from IGDB API docs. Follow the steps outlined there and put the keys in your config.py
🛠️ 3b. Setup without Mail (NO SMTP) 📭❌Single user system ? Whatever your reason, you can easily setup the application without SMTP. No mail? No problem!
sharewarez
database.setup_nosmtp.py
to create an admin user.app.py
.config_nosmtp.py
to recreate the database.5001
, you can simply change this in app.py
docker pull kapitanczarnobrod/sharewarez:latest
Thank you for setting up the Sharewarez App. For further assistance, please open an issue on this repository or join my Discord.