mirror of
https://github.com/joaovitoriasilva/endurain.git
synced 2026-01-10 08:17:59 -05:00
[frontend] Created UserAvatarComponent to make better reusability of this component and adapted views and components to it [frontend] It is now possible to upload a photo of the user when creating the user [frontend] Deleting the user deletes the photo in the filesystem [backend] Added logic to receive uploaded user photo and store it in the filesystem under user_images directory [backend] Added logic to /user_images be routed when requested [docker] Updated docker files and example docker compose file
49 lines
848 B
Plaintext
49 lines
848 B
Plaintext
# Python
|
|
backend/__pycache__/
|
|
backend/*/__pycache__/
|
|
backend/*/*/__pycache__/
|
|
backend/*.pyc
|
|
|
|
# Logs
|
|
backend/logs/*.log
|
|
backend/*.log
|
|
|
|
# user image folder images
|
|
backend/user_images/*.jpeg
|
|
backend/user_images/*.png
|
|
backend/user_images/*.jpg
|
|
|
|
# Frontend
|
|
frontend/img/users_img/*.*
|
|
# Logs
|
|
frontend/.gitignore
|
|
frontend/logs
|
|
frontend/*.log
|
|
frontend/npm-debug.log*
|
|
frontend/yarn-debug.log*
|
|
frontend/yarn-error.log*
|
|
frontend/pnpm-debug.log*
|
|
frontend/lerna-debug.log*
|
|
|
|
frontend/node_modules
|
|
frontend/.DS_Store
|
|
frontend/dist
|
|
frontend/dist-ssr
|
|
frontend/coverage
|
|
frontend/*.local
|
|
frontend/README.md
|
|
|
|
frontend/cypress/videos/
|
|
frontend/cypress/screenshots/
|
|
|
|
# Editor directories and files
|
|
frontend/.vscode/*
|
|
frontend/!.vscode/extensions.json
|
|
frontend/.idea
|
|
frontend/*.suo
|
|
frontend/*.ntvs*
|
|
frontend/*.njsproj
|
|
frontend/*.sln
|
|
frontend/*.sw?
|
|
|
|
frontend/*.tsbuildinfo |