Roman Teller
05/23/2024, 8:19 PMkapa.ai
05/23/2024, 8:20 PMDocker Engine and the Docker Compose plugin on your workstation. You can follow the instructions provided [here](https://docs.docker.com/engine/install/). 2. After Docker is installed, you can immediately get started locally by running the following commands: bash # clone Airbyte from GitHub git clone --depth=1 <https://github.com/airbytehq/airbyte.git> # switch into Airbyte directory cd airbyte # start Airbyte ./run-ab-platform.sh 3. In your browser, visit http://localhost:8000 4. You will be asked for a username and password. By default, that's username airbyte and password password. Once you deploy Airbyte to your servers, be sure to change these in your .env file: bash # Proxy Configuration # Set to empty values, e.g. "" to disable basic auth BASIC_AUTH_USERNAME=your_new_username_here BASIC_AUTH_PASSWORD=your_new_password_here 5. Start moving some data! You can find more details in the [official documentation](https://docs.airbyte.com/deploying-airbyte/docker-compose).