Skip to content

Commit

Permalink
Upgrade packages
Browse files Browse the repository at this point in the history
  • Loading branch information
joahim committed Feb 3, 2022
1 parent 5743ad8 commit 6e275e6
Show file tree
Hide file tree
Showing 8 changed files with 172 additions and 148 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ADD ./docker/setup.sh /setup.sh
RUN /setup.sh --dev && rm /setup.sh

USER ${USERNAME}
ENV PATH=/home/${USERNAME}/.local/bin:${PATH}
ENV PATH=/home/${USERNAME}/.local/bin:${PATH}
7 changes: 3 additions & 4 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:

environment:
DJANGO_SETTINGS_MODULE: sledilnik.settings.devcontainer

volumes:
- ..:/website-backend:cached

Expand All @@ -21,8 +21,7 @@ services:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: sledilnik
volumes:
- pg-data:/var/lib/postgresql/data
- pg-data:/var/lib/postgresql/data


volumes:
pg-data:
pg-data:
300 changes: 161 additions & 139 deletions Pipfile.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sledilnik/faq/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


class FaqConfig(AppConfig):
name = 'faq'
name = 'sledilnik.faq'
2 changes: 1 addition & 1 deletion sledilnik/modeling/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


class ModelingConfig(AppConfig):
name = 'modeling'
name = 'sledilnik.modeling'
2 changes: 1 addition & 1 deletion sledilnik/posts/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


class PostsConfig(AppConfig):
name = 'posts'
name = 'sledilnik.posts'
2 changes: 1 addition & 1 deletion sledilnik/restrictions/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


class RestrictionsConfig(AppConfig):
name = 'restrictions'
name = 'sledilnik.restrictions'
3 changes: 3 additions & 0 deletions sledilnik/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@
FILE_UPLOAD_DIRECTORY_PERMISSIONS = 0o755


DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'


# Logging

LOGGING = {
Expand Down

0 comments on commit 6e275e6

Please sign in to comment.