Skip to content

Commit

Permalink
fix:burrice
Browse files Browse the repository at this point in the history
  • Loading branch information
jpaiva31 committed Mar 9, 2023
1 parent e3f70db commit e376c11
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ services:
# - POSTGRES_PASSWORD=postgres
web:
build: .
command: python manage.py runserver 0.0.0.0:8000 && python manage.py migrate && python manage.py migrate feed 0012 --fake && python manage.py migrate && python manage.py migrate twikkerprofile 0006 --fake && python manage.py migrate
command: python manage.py runserver 0.0.0.0:7000 && python manage.py migrate && python manage.py migrate feed 0012 --fake && python manage.py migrate && python manage.py migrate twikkerprofile 0006 --fake && python manage.py migrate
volumes:
- .:/code
ports:
- "8000:8000"
- "7000:7000"
environment:
- POSTGRES_NAME=postgres
- POSTGRES_USER=postgres
Expand Down
4 changes: 2 additions & 2 deletions frontend/.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VITE_API_BASE_URL = 'http://localhost:8000'
VITE_SOCKET_HOST = 'localhost:8000'
VITE_API_BASE_URL = 'http://localhost:7000'
VITE_SOCKET_HOST = 'localhost:7000'
2 changes: 1 addition & 1 deletion frontend/src/pages/Notifications.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<small>{{ formatted_time(notification.created_at) }}</small>
</router-link>
<router-link :to="`/profile/${notification.created_by_username}`" v-if="notification.notification_type == 'follower'">
<strong>{{ notification.created_by_username }}</strong> começou router-link te
<strong>{{ notification.created_by_username }}</strong> começou a te
seguir
<small>{{ formatted_time(notification.created_at) }}</small>
</router-link>
Expand Down

0 comments on commit e376c11

Please sign in to comment.