-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.txt
47 lines (29 loc) · 1.28 KB
/
notes.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
Tweaks:
Instructions to kill the server if the terminal is not there anymore.
https://stackoverflow.com/questions/19071512/socket-error-errno-48-address-already-in-use
Added: sys.path.append(os.getcwd()) to first.py so that '$ flask shell' works.
To do:
- How to set automatically the 'FLASK_APP' env variable
To know:
- What is the hidden tag?
- When to use 'POST' and when 'GET'
- Lazy/dynamic in queries?
Ideas for flit_beta
- usuarios
- Ratings de viajes de brokers
- register in front of the page
- register to see the number of the broker
- feedback del cliente (precio final)
- categorias:
-Mudanzas
- Pensar bien en la info que se va a poner en el thumbnail (https://listado.mercadolibre.com.mx/busco-fletes-mexico-monterrey), es la primera impresion
Notes
- export FLASK_DEBUG=1
- Setting env variables for sending emails:
(venv) $ export MAIL_SERVER=smtp.googlemail.com
(venv) $ export MAIL_PORT=587
(venv) $ export MAIL_USE_TLS=1
(venv) $ export MAIL_USERNAME=<your-gmail-username>
(venv) $ export MAIL_PASSWORD=<your-gmail-password>
Note ---> Remember that the security features in your Gmail account may prevent the application from sending emails
through it unless you explicitly allow "less secure apps" access to your Gmail account.