Deploy Local Instance
Set up a local ODE environment for development and testing.
Overview
This guide will help you deploy a local Synkronus server instance for development and testing.
Prerequisites
- Docker and Docker Compose installed
- Basic familiarity with command line tools
Quick Start
- Clone the Synkronus repository
- Configure environment variables
- Start the Docker containers
- Access the server at
http://localhost:8080
Detailed Instructions
Step 1: Clone Repository
git clone https://github.com/OpenDataEnsemble/ode.git
cd ode/synkronus
Step 2: Configure Environment
Create a .env file with your database configuration:
DATABASE_URL=postgres://user:password@localhost:5432/synkronus
SERVER_PORT=8080
Step 3: Start Services
docker-compose up -d
Step 4: Verify Installation
Check that services are running:
docker-compose ps