System Installation
Sequential procedures for establishing the ScanStock environment.
0️⃣ Pull Docker Image
The first step is to pull the ScanStock image from our official registry. This ensures you have the latest software version before configuration.
docker pull ghcr.io/jcp-vision/scanstock:latest
1️⃣ Create Environment File
To configure your local instance, copy the provided .env.example template to a new file named .env.
cp .env.example .env
License Key Required: To activate ScanStock, you must obtain a valid
LICENSE_KEY directly from Jonathan Chacko Pattas (JCP-VISION). Without a valid key, the system will not initialize.
Open your newly created .env file and configure the following parameters:
LICENSE_KEY=your-provided-key
DJANGO_SUPERUSER_USERNAME=admin
DJANGO_SUPERUSER_PASSWORD=StrongPassword123
DJANGO_SUPERUSER_EMAIL=admin@company.com
Admin Credentials: The
DJANGO_SUPERUSER variables define the initial administrator account created on first startup. Please ensure you use a strong password.
Next Steps
Once your environment is prepared, proceed to the Docker Deployment guide to launch the application.