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-Setup

Step 2: Configure the Environment

  1. Rename the provided .env.example file to .env:
  2. mv .env.example .env
  3. Customize the .env file as needed. Default values are provided:
  4. POSTGRES_USER=postgres
    POSTGRES_PASSWORD=postgres
    POSTGRES_DB=postgres
    ODOO_DB_USER=odoo
    ODOO_DB_PASSWORD=odoo
    ODOO_PORT=8069
    ADMINER_PORT=8080
  5. Update variables in the build_and_run.sh or build_and_run.bat scripts if necessary.

Step 3: Deploy the Setup

For Linux/Mac:

  1. Make the script executable:
  2. chmod +x ./build_and_run.sh
  3. Run the script:
  4. ./build_and_run.sh

For Windows:

  1. Execute the batch script:
  2. build_and_run.bat