This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recordings": [ | |
{ | |
"recording_name": "dir1", | |
"files": [ | |
{ | |
"filename": "filename1", | |
"bytestring": "bytestring1" | |
} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
os ?= $(shell lsb_release -cs) | |
install-docker:;: '$(os)' | |
@apt-get update | |
@apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
software-properties-common | |
@curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
@apt-key fingerprint 0EBFCD88 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class UsersForm(FlaskForm): | |
name = StringField('Name', validators=[DataRequired()]) | |
email = StringField('Email', validators=[DataRequired()]) | |
password = PasswordField('Password', validators=[DataRequired()]) | |
role = SelectField(u'Role', coerce=str) | |
submit = SubmitField('Submit') | |
def edit_user(id): | |
add_user = False |
NewerOlder