How tu run airbyte locally in windows?
# ask-ai
d
How tu run airbyte locally in windows?
u
To run Airbyte locally on a Windows machine, you need to follow these steps: 1. Install Docker Engine and Docker Compose plugin on your workstation. You can follow the instructions provided in the [Docker documentation](https://docs.docker.com/engine/install/). 2. Clone the Airbyte repository from GitHub and switch to the Airbyte directory:
Copy code
git clone --depth=1 <https://github.com/airbytehq/airbyte.git>     cd airbyte
3. Start Airbyte using the provided script:
Copy code
./run-ab-platform.sh
4. Visit
<http://localhost:8000>
in your browser. 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:
Copy code
# 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! Please note that these instructions have been tested on MacOS, Windows 10, and Ubuntu 22.04. If you encounter any issues, you can refer to the [deployment troubleshooting guide](https://docs.airbyte.com/deploying-airbyte/troubleshoot-deploy). Source: [Airbyte Docker Compose Deployment](https://docs.airbyte.com/deploying-airbyte/docker-compose)