Compare commits

..

No commits in common. "03eb8946025c2eb42a5f365d2d747d678306d858" and "d727afe5b83efa5cc54b0140205ca2666daea892" have entirely different histories.

16 changed files with 1 additions and 10 deletions

View File

@ -232,13 +232,6 @@ restore: ## Run 'restore' service
@$(DOCKER_COMPOSE) $(DOCKER_COMPOSE_FILES) run --rm $(RESTORE_SERVICE)
##
# migrate
#
migrate: ## Run 'migrate', django migrations, needs the container to be up and running
@$(DOCKER) exec -it "$(container)" /entrypoint.sh run-migrations
cleandb:
@prefix="bsky.local-"; \
path="_data/backup/*" ; \
@ -273,7 +266,6 @@ cleandb:
fi ; \
done ;
%:
@:

View File

@ -13,3 +13,4 @@ MYSQL_ROOT_PASSWORD=pass
DEBUG=True
SECRET_KEY=django-secret-key-123123-abcabc
DJANGO_SETTINGS_MODULE=project.settings.devel

View File

@ -38,7 +38,6 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'core',
]
MIDDLEWARE = [

View File

@ -1,3 +1,2 @@
Django==5.1.3
python-decouple==3.8
mysqlclient==2.2.6