Skip to content

Commit

Permalink
Add project structure file
Browse files Browse the repository at this point in the history
  • Loading branch information
fedecarboni7 committed Sep 17, 2024
1 parent 9213d48 commit aaad67d
Showing 1 changed file with 97 additions and 0 deletions.
97 changes: 97 additions & 0 deletions proyect_structure.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
Listado de rutas de carpetas

| .env
| .gitignore
| CONTRIBUTING.md
| LICENSE
| Procfile
| README.md
| requirements.txt
|
+---.github
| +---workflows
| codeql.yml
| python-app.yml
|
+---app
| | main.py
| | __init__.py
| |
| +---config
| | | config.py
| | | logging_config.py
| | | __init__.py
| |
| +---db
| | | database.py
| | | database_utils.py
| | | models.py
| | | schemas.py
| | | __init__.py
| |
| +---routes
| | | auth_routes.py
| | | main_routes.py
| | | player_routes.py
| | | __init__.py
| |
| +---utils
| | | auth.py
| | | security.py
| | | team_optimizer.py
| | | validators.py
| | | __init__.py
|
+---static
| +---css
| | daisyui.min.css
| | style.css
| | styles-v1.0.3.css
| |
| +---favicon-v1.0
| | android-chrome-192x192.png
| | android-chrome-512x512.png
| | apple-touch-icon.png
| | favicon-16x16.png
| | favicon-32x32.png
| | favicon.ico
| | site.webmanifest
| |
| +---images
| | armar-equipos-logo-circle.png
| | footer-bg.svg
| | hero-bg-bottom.svg
| | hero-bg-top.svg
| | iphone-feature-01.png
| | iphone-feature-02.png
| | iphone-feature-03.png
| | iphone-feature-04.png
| | iphone-feature-bg-01.svg
| | iphone-feature-bg-02.svg
| | iphone-feature-bg-03.svg
| | iphone-feature-bg-04.svg
| | iphone-hero-bg.svg
| | iphone-hero.png
| |
| +---js
| main.min.js
| script-v1.0.6.js
|
+---templates
| 500.html
| index.html
| landing-page.html
| login.html
| signup.html
|
+---tests
| | __init__.py
| | conftest.py
| |
| +---config
| | test_config.py
| |
| +---routes
| | test_auth_routes.py
| | test_main_routes.py
| | test_player_routes.py

0 comments on commit aaad67d

Please sign in to comment.