-
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.
powerbi: Add setup task. Download Dockerfiles as part of build target…
…s. Update docs. docs: - Add comments to config.mk. - Mention assumption about current directory. - database: Mention DATABASE_* configurations. Describe passwordless login. - filesystem: Mention CARDINAL_WORKDIR configuration. Describe file ownership. - build: Document current directory requirements. List target's effects. - cron: Mention CARDINAL_WORKDIR configuration. Describe crontab ownership. - clean: Add section.
- Loading branch information
1 parent
55beffc
commit 63d35ff
Showing
3 changed files
with
106 additions
and
29 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
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,5 +1,10 @@ | ||
# The host of the database used for this project. | ||
DATABASE_HOST=localhost | ||
# The name of the database used for this project. | ||
DATABASE_NAME=cardinal | ||
# The database user for this project. | ||
DATABASE_USER=cardinal | ||
DATABASE_HOST=localhost | ||
# The host of the database, from within the Docker container. | ||
DATABASE_HOST_DOCKER=host.docker.internal | ||
# The working directory for this project. | ||
CARDINAL_WORKDIR=/absolute/path/workdir |