pokeapi/Makefile

103 lines
3.5 KiB
Makefile
Raw Normal View History

2021-01-11 18:44:43 +00:00
veekun_pokedex_repository = ../pokedex
local_config = --settings=config.local
docker_config = --settings=config.docker-compose
2021-03-19 18:09:59 +00:00
HASURA_GRAPHQL_ADMIN_SECRET=pokemon
2021-01-11 18:44:43 +00:00
.PHONY: help
2021-03-19 18:09:59 +00:00
.SILENT:
help:
@grep -E '^[a-zA-Z_-]+:.*?# .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?# "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
install: # Install base requirements to run project
2016-03-05 08:29:26 +00:00
pip install -r requirements.txt
2014-12-04 11:11:46 +00:00
dev-install: # Install developer requirements + base requirements
2016-03-05 09:27:25 +00:00
pip install -r test-requirements.txt
setup: # Set up the project database
2021-01-11 18:44:43 +00:00
python manage.py migrate ${local_config}
2014-12-04 11:11:46 +00:00
2021-01-11 18:44:43 +00:00
wipe-sqlite-db: # Delete's the project database
2014-12-04 11:11:46 +00:00
rm -rf db.sqlite3
serve: # Run the project locally
2021-01-11 18:44:43 +00:00
python manage.py runserver ${local_config}
2014-12-04 11:11:46 +00:00
test: # Run tests
2021-01-11 18:44:43 +00:00
python manage.py test ${local_config}
2014-12-04 11:11:46 +00:00
clean: # Remove any pyc files
find . -type f -name '*.pyc' -delete
2016-04-30 14:36:56 +00:00
2021-01-11 18:44:43 +00:00
migrate: # Run any outstanding migrations
python manage.py migrate ${local_config}
make-migrations: # Create migrations files if schema has changed
python manage.py makemigrations ${local_config}
shell: # Load a shell
2021-01-11 18:44:43 +00:00
python manage.py shell ${local_config}
docker-up: # (Docker) Create services/volumes/networks
docker-compose up -d
docker-migrate: # (Docker) Run any pending migrations
docker-compose exec -T app python manage.py migrate ${docker_config}
docker-build-db: # (Docker) Build the database
docker-compose exec -T app sh -c 'echo "from data.v2.build import build_all; build_all()" | python manage.py shell ${docker_config}'
docker-make-migrations: # (Docker) Create migrations files if schema has changed
docker-compose exec -T app sh -c 'python manage.py makemigrations ${docker_config}'
docker-flush-db: # (Docker) Removes all the data present in the database but preserves tables and migrations
docker-compose exec -T app sh -c 'python manage.py flush --no-input ${docker_config}'
docker-destroy-db: # (Docker) Removes the volume where the database is installed on, alongside to the container itself
docker rm -f pokeapi_db_1
docker volume rm pokeapi_pg_data
2021-01-11 18:44:43 +00:00
docker-shell: # (Docker) Launch an interative shell for the pokeapi container
docker-compose exec app sh -l
docker-stop: # (Docker) Stop containers
docker-compose stop
docker-down: # (Docker) Stop and removes containers and networks
docker-compose down
docker-setup: docker-up docker-migrate docker-build-db # (Docker) Start services, prepare the latest DB schema, populate the DB
format: # Format the source code
black .
format-check: # Check the source code has been formatted
black . --check
2021-01-11 18:44:43 +00:00
pull:
git checkout master
git pull
pull-veekun:
git -C ${veekun_pokedex_repository} checkout master-pokeapi
git -C ${veekun_pokedex_repository} pull
2021-03-19 18:09:59 +00:00
sync-from-veekun: pull pull-veekun # Copy data from ../pokedex to this repository
2021-01-11 18:44:43 +00:00
cp -a ${veekun_pokedex_repository}/pokedex/data/csv/. ./data/v2/csv
2021-03-19 18:09:59 +00:00
sync-to-veekun: pull pull-veekun # Copy data from this repository to ../pokedex
2021-01-11 18:44:43 +00:00
cp -a ./data/v2/csv/. ${veekun_pokedex_repository}/pokedex/data/csv
2021-03-08 21:50:19 +00:00
2021-03-19 18:09:59 +00:00
read-env-file: # Exports ./.env into shell environment variables
export `egrep -v '^#' .env | xargs`
2021-03-08 21:50:19 +00:00
hasura-export: # Export Hasura configuration
2021-03-19 18:09:59 +00:00
hasura md export --project hasura --admin-secret ${HASURA_GRAPHQL_ADMIN_SECRET}
2021-03-08 21:50:19 +00:00
hasura-apply: # Apply local Hasura configuration
2021-03-19 18:09:59 +00:00
hasura md apply --project hasura --admin-secret ${HASURA_GRAPHQL_ADMIN_SECRET}
hasura-get-anon-schema: # Dumps GraphQL schema
gq http://localhost:8080/v1/graphql --introspect > hasura/schema.graphql