As configured in my dotfiles.
start new:
tmux
start new with session name:
| # [🟨OPTIONAL] Uninstall old docker versions | |
| sudo apt-get remove docker docker-engine docker.io containerd runc | |
| # Refresh latest version | |
| sudo apt-get update | |
| # Install pre-req | |
| sudo apt-get install -y \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg \ |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| # Example of combining Flask-Security and Flask-Admin. | |
| # by Steve Saporta | |
| # April 15, 2014 | |
| # | |
| # Uses Flask-Security to control access to the application, with "admin" and "end-user" roles. | |
| # Uses Flask-Admin to provide an admin UI for the lists of users and roles. | |
| # SQLAlchemy ORM, Flask-Mail and WTForms are used in supporting roles, as well. | |
| from flask import Flask, render_template | |
| from flask.ext.sqlalchemy import SQLAlchemy |