Freedom is the core of Salesbotics' philosophy. We believe sellers should have complete control at any scale. Deploy our powerful commerce platform directly on your infrastructure with a simple Docker container, and experience enterprise capabilities without compromising on security or flexibility.
Deploy the exact same codebase that powers our enterprise customers, with no feature limitations or hidden costs
Implement your own security protocols and keep sensitive data protected within your infrastructure boundary.
Fine-tune your deployment for your specific hardware and traffic patterns for maximum efficiency.
Maintain 100% ownership and control of all your customer and transaction data with no third-party access.
Get up and running in under 5 minutes with these simple commands
wget https://salesbotics.io/downloads/salesbotics.tar
docker load -i salesbotics.tar
# Required database configuration
DATABASE_USER=postgres
DATABASE_PASSWORD=your_password
DATABASE_HOST=your_db_host
DATABASE_PORT=5432
# Optional configuration
DEBUG=True
REDIS_URL=redis://127.0.0.1:6379/1
CELERY_TASK_ALWAYS_EAGER=True
ALLOWED_CURRENCIES=USD,EUR,GBP,JPY
DISABLE_DJANGO_ADMIN=False
docker run -d -p 80:80 \
-e DATABASE_USER=postgres \
-e DATABASE_PASSWORD=your_password \
-e DATABASE_HOST=your_db_host \
-e DATABASE_PORT=5432 \
-e DEBUG=True \
-e ALLOWED_CURRENCIES=USD,EUR,GBP,JPY \
--name salesbotics-server \
salesbotics
Open your browser and navigate to http://localhost to access your Salesbotics dashboard.
Need help with deployment? Check our detailed documentation or contact our support team.