A lightweight, self-hosted VPS and dedicated server inventory management system built with the Slim Framework.
SlimRack is a recreation of Carotu using the Slim 4 PHP framework. It provides a clean, modern architecture with support for multiple database backends (SQLite and MySQL/MariaDB), making it suitable for both local development and shared hosting environments like cPanel.
- Server Inventory Management - Track VPS and dedicated servers with detailed specifications
- Provider Management - Organize servers by hosting provider with control panel links
- Billing Tracking - Monitor prices, payment cycles, and renewal dates
- Multi-Currency Support - Handle multiple currencies with exchange rate conversion
- REST API - Full API with key-based authentication for external integrations
- Database Flexibility - Choose between SQLite (simple) or MySQL/MariaDB (scalable)
- Easy Installation - Web-based setup wizard for quick deployment
- Responsive Design - Bootstrap 5 interface that works on desktop and mobile
- PHP 8.1 or higher
- PDO extension with SQLite and/or MySQL driver
- Apache with mod_rewrite or Nginx
- Composer
git clone https://github.com/asimzeeshan/SlimRack.git
cd SlimRack
cp .env.example .env
docker compose up -dVisit http://localhost:8080/install/ to complete setup.
For development with live editing:
docker compose -f docker-compose.dev.yml up -d
composer install-
Clone the repository:
git clone https://github.com/asimzeeshan/SlimRack.git cd SlimRack -
Install dependencies:
composer install
-
Copy the environment file:
cp .env.example .env
-
Point your web server to the
public/directory -
Visit the application in your browser and follow the installation wizard
Configuration is managed via the .env file:
# Database (sqlite or mysql)
DB_DRIVER=sqlite
DB_HOST=localhost
DB_DATABASE=storage/database/slimrack.sqlite
DB_USERNAME=
DB_PASSWORD=
# Application
APP_KEY=your-random-32-character-key
APP_DEBUG=false
# Authentication
AUTH_USERNAME=admin
AUTH_PASSWORD_HASH=
# API Keys (comma-separated)
API_KEYS=- Framework: Slim 4
- Templating: Twig
- Frontend: Bootstrap 5, DataTables, jQuery
- Database: SQLite or MySQL/MariaDB via PDO
This project is a recreation of Carotu by seikan, rebuilt using the Slim Framework for improved architecture and database flexibility.
Asim Zeeshan
- LinkedIn: linkedin.com/in/asimzeeshan
- GitHub: github.com/asimzeeshan
MIT License - See LICENSE file for details.