Welcome to the ION Workout App installers repository! This project provides two convenient ways to set up the ION Workout App server:
- CLI Installer 🔄: A command-line interface script for advanced users.
- GUI Installer 🔧: A graphical interface with a friendly setup wizard.
- Environment Setup: Automatically configures environment variables in a
.env
file. - MongoDB Integration: Supports username, password, and database setup.
- Docker Image Management: Pulls necessary Docker images.
- Custom Credentials: Optionally auto-generate secure passwords and keys.
Ensure the following software is installed:
- Git
- Docker & Docker Compose
- Python 3.x
- Cloudflared (optional)
For the GUI installer, the Python dependencies will be installed automatically.
The CLI installer is a Bash script that guides you through the setup process via terminal prompts.
Run this single command to execute the CLI installer:
bash <(curl -s https://raw.githubusercontent.com/ION-WorkoutApp/installers/refs/heads/main/CLI/setup.sh)
- Fetches the installer script from the repository.
- Executes it directly in your terminal.
The GUI installer provides a user-friendly interface for setting up the ION Workout App server.
Simply download and run the setup file
The GUI installer can be packaged into a standalone executable using PyInstaller:
-
Clone the repository:
git clone https://github.com/ION-WorkoutApp/installers.git cd installers
-
Create and activate a virtual environment:
python3 -m venv venv source venv/bin/activate # For Linux/macOS venv\Scripts\activate # For Windows
-
Install dependencies:
pip install -r GUI/requirements.txt
-
Build the executable:
pyinstaller --onefile --noconsole server_setup.py
The executable will be created in the
dist
folder -
Deactivate the virtual environment (optional):
deactivate
-
Docker Not Found:
- Ensure Docker is installed and running.
- Verify Docker Compose compatibility.
-
Python Errors:
- Ensure Python 3.x is installed.
Contributions are welcome! Feel free to submit issues or pull requests.
This project is licensed under the MIT License.