-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathestrutura de diretórios.txt
81 lines (81 loc) · 2.71 KB
/
estrutura de diretórios.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
estoquerapido/
├── assets/
│ ├── audios/
│ ├── fonts/
│ ├── icons/
│ ├── images/
│ │ ├── avatars/
│ │ ├── nao_utilizadas/
│ │ └── estoquerapido_img_123e4567e89b12d3a456426614174000.jpg
│ ├── media/
│ ├── styles/
│ └── manifest.json
├── src/
│ ├── controllers/
│ │ ├── __init__.py
│ │ └── user_controller.py
│ ├── domain/
│ │ └── models/
│ │ ├── __init__.py
│ │ ├── nome_pessoa.py
│ │ ├── phone_number.py
│ │ └── user.py
│ ├── pages/
│ │ ├── companyes/
│ │ │ ├── __init__.py
│ │ │ └── form_cia.py
│ │ ├── home/
│ │ │ ├── __init__.py
│ │ │ └── home_page.py
│ │ ├── partials/
│ │ │ ├── __init__.py
│ │ │ └── login_button.py
│ │ ├── __init__.py
│ │ ├── home.py
│ │ ├── landing_page.py
│ │ ├── login.py
│ │ └── signup.py
│ ├── presentation/
│ │ ├── components/
│ │ │ ├── __init__.py
│ │ │ └── carousel.py
│ ├── services/
│ │ ├── __init__.py
│ │ ├── aws/
│ │ │ └── s3_file_manager.py
│ │ ├── entities/
│ │ │ ├── comany_service.py
│ │ │ └── user_service.py
│ │ ├── google/
│ │ │ ├── firebaseAdminSDK-SAMPLE.json
│ │ │ └── serviceAccountKey-SAMPLE.json
│ │ ├── payment_gateways/
│ │ │ └── asaas_payment_gateway.py
│ │ ├── states/
│ │ │ ├── __init__.py
│ │ │ ├── app_state_manager.py
│ │ │ └── state_validatgor.py
│ ├── tests/
│ ├── utils/
│ │ ├── __init__.py
│ │ ├── deep_translator.py
│ │ ├── field_validation_functions.py
│ │ └── message_snackbar.py
│ │ ├── __init__.py
├── storage/
│ ├── data/
│ │ ├── firebase/
│ │ │ ├── __init__.py
│ │ │ ├── firebase_initialize.py
│ │ │ └── firebase_user_repository.py
│ │ ├── interfaces/
│ │ │ ├── __init__.py
│ │ │ └── user_repository.py
│ └── temp/
├── venv/
├── .env
├── .gitignore
├── estrutura de diretórios.txt
├── main.py
├── README.md
└── requirements.txt