-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure.txt
More file actions
28 lines (26 loc) · 936 Bytes
/
structure.txt
File metadata and controls
28 lines (26 loc) · 936 Bytes
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
/flasklogin-tutorial
├── /flask_login_tutorial
│ ├── __init__.py
│ ├── assets.py
│ ├── auth.py
│ ├── forms.py
│ ├── function.py
│ ├── models.py
│ ├── routes.py
│ ├── /static/dist/css
│ └── /templates
├── .env
├── config.py
├── Pipfile
├── Pipfile.lock
├── start.sh
├── structure.txt
└── wsgi.py
/Scripts:
├── pipenv install (installs required packages from pipfile)
├── pipenv install [] (installs and adds package to pipfile)
├── pipenv synch -d (installs packages from pipfile development list)
├── pipenv install -d [] (installs and adds package to pipfile development list)
├── pipenv shell (starts pipenv environment)
├── pipenv --rm (removes local pipenv environment)
└── python wsgi.py (starts the BAT server)