Getting Started
Follow these steps to deploy the Odoo Simplified Setup:
Requirements
- Docker: Ensure Docker is installed and running on your system.
- Basic Command-Line Knowledge: Familiarity with running scripts and Docker commands.
Step 1: Clone the Repository
git clone https://github.com/OpenSrc-NeuralInverse/Odoo-Simplified-Setup.git
cd Odoo-Simplified-SetupStep 2: Configure the Environment
- Rename the provided
.env.examplefile to.env: - Customize the
.envfile as needed. Default values are provided: - Update variables in the
build_and_run.shorbuild_and_run.batscripts if necessary.
mv .env.example .envPOSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=postgres
ODOO_DB_USER=odoo
ODOO_DB_PASSWORD=odoo
ODOO_PORT=8069
ADMINER_PORT=8080Step 3: Deploy the Setup
For Linux/Mac:
- Make the script executable:
- Run the script:
chmod +x ./build_and_run.sh./build_and_run.shFor Windows:
- Execute the batch script:
build_and_run.bat