Development Setup
This guide will help you set up your development environment for contributing to the Eyened platform.
Prerequisites
Before you begin, ensure you have the following installed:
Quick Start
To start the development environment:
cd devdocker-compose up -dThis starts the database and fileserver services.
In separate terminals:
./start_client_dev.sh./start_server_dev.shNow you can make edits to the client or server code, the application should update automatically.
Development Workflow
-
Create a new branch for your feature:
Terminal window git checkout -b feature/your-feature-name -
Make your changes and test them locally
-
Push to the public repository and create a pull request