###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
Picked these from here
| Command | Note |
|---|---|
| Ctrl + a | go to the start of the command line |
| Ctrl + e | go to the end of the command line |
| Ctrl + k | delete from cursor to the end of the command line |
| from flask import Flask, render_template, flash, request | |
| from werkzeug.datastructures import MultiDict | |
| from flaskext.wtf import Form, TextField, TextAreaField, validators | |
| # App config. | |
| DEBUG = True | |
| SECRET_KEY = '87469976308fd14a2d0148247d441f2756b6176a' | |
| app = Flask(__name__) | |
| app.config.from_object(__name__) |