Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created March 31, 2020 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/d284fa1554276e82d1d147813df77864 to your computer and use it in GitHub Desktop.
Save r-ryantm/d284fa1554276e82d1d147813df77864 to your computer and use it in GitHub Desktop.
/nix/store/s39kd95rsxach9pnwl2hg5rhsgkd7p6z-sqlite-web-0.3.6
├── bin
│   └── sqlite_web
├── lib
│   └── python3.7
│   └── site-packages
│   ├── sqlite_web
│   │   ├── __init__.py
│   │   ├── __main__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   └── sqlite_web.cpython-37.pyc
│   │   ├── sqlite_web.py
│   │   ├── static
│   │   │   ├── css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── sqlbrowse.css
│   │   │   │   └── syntax-highlight.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   ├── img
│   │   │   │   ├── delete.png
│   │   │   │   ├── expression.png
│   │   │   │   ├── index-create.png
│   │   │   │   ├── index-drop.png
│   │   │   │   ├── insert.png
│   │   │   │   ├── select-advanced.png
│   │   │   │   ├── select.png
│   │   │   │   ├── table-alter.png
│   │   │   │   ├── table-create.png
│   │   │   │   ├── table-drop.png
│   │   │   │   ├── trigger-create.png
│   │   │   │   ├── trigger-drop.png
│   │   │   │   ├── update.png
│   │   │   │   ├── view-create.png
│   │   │   │   └── view-drop.png
│   │   │   └── js
│   │   │   ├── bootstrap.bundle.min.js
│   │   │   └── jquery-1.11.0.min.js
│   │   └── templates
│   │   ├── add_column.html
│   │   ├── add_index.html
│   │   ├── base.html
│   │   ├── base_table.html
│   │   ├── base_tables.html
│   │   ├── drop_column.html
│   │   ├── drop_index.html
│   │   ├── drop_table.html
│   │   ├── drop_trigger.html
│   │   ├── index.html
│   │   ├── login.html
│   │   ├── rename_column.html
│   │   ├── table_content.html
│   │   ├── table_import.html
│   │   ├── table_query.html
│   │   └── table_structure.html
│   └── sqlite_web-0.3.6.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
14 directories, 54 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment