-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
34 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "pipelines"] | ||
path = pipelines | ||
url = https://github.com/profcomff/dwh-pipelines |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,25 @@ | ||
# dwh-airflow | ||
Airflow build and deploy | ||
|
||
## Как начать работу локально | ||
1. Забери репозиторий себе на компьютер вместе с репозиторием pipelines (потребуется [установить git](https://git-scm.com/book/ru/v2/Введение-Установка-Git)) командой: | ||
|
||
`git clone --recurse-submodules https://github.com/profcomff/dwh-airflow` | ||
|
||
2. Запусти локально базу данных и airflow (для этого потребуется [установить docker](https://docs.docker.com/engine/install/) и [установить docker compose](https://docs.docker.com/compose/install)) командой: | ||
|
||
`docker compose up -d` | ||
|
||
или `docker-compose up -d` | ||
|
||
3. Открой браузер по адресу http://localhost:8080. Логин `admin` пароль `admin`. | ||
|
||
4. Изменения в пайплайны можно делать в папке `pipelines`, которая является репозиторием https://github.com/profcomff/dwh-pipelines. То есть изменения в этой папке можно сразу закоммитить. | ||
|
||
5. Если нужно посмотреть содержимое БД, сделать это можно через DBeaver, подключившись к локальной базе данных | ||
|
||
* Адрес: `localhost` | ||
* Порт: `5432` | ||
* База данных: `postgres` | ||
* Логин: `postgres` | ||
* Без пароля |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters