* Modify `docker-compose-developer` configuration files, and `Makefile` to support running everything in containers for local development - Make use of the COMPOSE_PROFILES env var that is supported by docker-compose to allow swapping-out/turning off certain docker-compose services. - add makefile cleanup command. Will remove all docker resources related to running the project locally - The "restart grafana container" issue, where users would need to restart their grafana container when setting up the project for the first time, is now fixed (make command now runs yarn build:dev before docker-compose startup; this ensures grafana-plugin/dist is available for grafana container before it starts up) - The DEVELOPER.md has been updated as well to reflect these new changes. It has been moved to ./dev/README.md (and references to the old file have been updated). - The redis image that is referenced in the docker-compose files has been pinned to v7.0.5 (latest version as of this commit) to avoid any surprises w/ future releases. - remove root .dockerignore in favour of individual .dockerignore files in ./engine and ./grafana-plugin
43 lines
491 B
Text
43 lines
491 B
Text
# Backend
|
|
*/db.sqlite3
|
|
engine/*.db
|
|
*.pyc
|
|
venv
|
|
.python-version
|
|
.vscode
|
|
dump.rdb
|
|
.idea
|
|
jupiter_playbooks/*
|
|
engine/reports/*.csv
|
|
engine/jupiter_playbooks/*
|
|
|
|
# Frontend dependencies
|
|
node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
.swp
|
|
.env
|
|
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
scripts/gcom.token
|
|
scripts/gcom_grafana.token
|
|
scripts/gcom_raintank.token
|
|
|
|
engine/extensions/
|
|
|
|
grafana-plugin/frontend_enterprise
|
|
|
|
uwsgi-local.ini
|
|
celerybeat-schedule
|