Merge branch 'master' into pyup-update-flake8-docstrings-1.1.0-to-1.3.0

master
Steven Loria 6 years ago committed by GitHub
commit df5ad04396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      .travis.yml
  2. 6
      README.rst
  3. 1
      {{cookiecutter.app_name}}/package.json
  4. 14
      {{cookiecutter.app_name}}/requirements/dev.txt
  5. 10
      {{cookiecutter.app_name}}/requirements/prod.txt
  6. 4
      {{cookiecutter.app_name}}/{{cookiecutter.app_name}}/database.py
  7. 2
      {{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/register.html

@ -3,13 +3,12 @@ sudo: false # http://docs.travis-ci.com/user/migrating-from-legacy/
language: python language: python
python: python:
- 2.7 - 2.7
- 3.4
- 3.5 - 3.5
- 3.6 - 3.6
install: install:
- pip install cookiecutter - pip install cookiecutter
- pip install invoke==0.14.0 - pip install invoke==1.0.0
- nvm install 6.10 - nvm install 8.11.2
- nvm use 6.10 - nvm use 8.11.2
script: script:
- invoke test - invoke test

@ -40,12 +40,10 @@ Features
Screenshots Screenshots
----------- -----------
.. image:: https://dl.dropboxusercontent.com/u/1693233/github/cookiecutter-flask-01.png .. image:: https://user-images.githubusercontent.com/2379650/35603073-7f5b78c2-0609-11e8-8fa8-7c6cce27fed6.png
:target: https://dl.dropboxusercontent.com/u/1693233/github/cookiecutter-flask-01.png
:alt: Home page :alt: Home page
.. image:: https://dl.dropboxusercontent.com/u/1693233/github/cookiecutter-flask-02.png.png .. image:: https://user-images.githubusercontent.com/2379650/35603086-936a30e2-0609-11e8-8f63-a4c844310aab.png
:target: https://dl.dropboxusercontent.com/u/1693233/github/cookiecutter-flask-02.png.png
:alt: Registration form :alt: Registration form

@ -15,6 +15,7 @@
}, },
"author": "{{cookiecutter.full_name}}", "author": "{{cookiecutter.full_name}}",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"engines": { "node" : ">=4" },
"bugs": { "bugs": {
"url": "https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.app_name}}/issues" "url": "https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.app_name}}/issues"
}, },

@ -2,16 +2,16 @@
-r prod.txt -r prod.txt
# Testing # Testing
pytest==3.3.1 pytest==3.6.1
WebTest==2.0.29 WebTest==2.0.29
factory-boy==2.9.2 factory-boy==2.11.1
# Lint and code style # Lint and code style
flake8==3.5.0 flake8==3.5.0
flake8-blind-except==0.1.1 flake8-blind-except==0.1.1
flake8-debugger==3.0.0 flake8-debugger==3.1.0
flake8-docstrings==1.3.0 flake8-docstrings==1.3.0
flake8-isort==2.3 flake8-isort==2.5
flake8-quotes==0.13.0 flake8-quotes==1.0.0
isort==4.2.15 isort==4.3.4
pep8-naming==0.5.0 pep8-naming==0.7.0

@ -1,24 +1,24 @@
# Everything needed in production # Everything needed in production
# Flask # Flask
Flask==0.12.2 Flask==1.0.2
MarkupSafe==1.0 MarkupSafe==1.0
Werkzeug==0.13 Werkzeug==0.14.1
Jinja2==2.10 Jinja2==2.10
itsdangerous==0.24 itsdangerous==0.24
click>=5.0 click>=5.0
# Database # Database
Flask-SQLAlchemy==2.3.2 Flask-SQLAlchemy==2.3.2
psycopg2==2.7.3.2 psycopg2==2.7.4
SQLAlchemy==1.2.0 SQLAlchemy==1.2.8
# Migrations # Migrations
Flask-Migrate==2.1.1 Flask-Migrate==2.1.1
# Forms # Forms
Flask-WTF==0.14.2 Flask-WTF==0.14.2
WTForms==2.1 WTForms==2.2.1
# Deployment # Deployment
gunicorn>=19.1.1 gunicorn>=19.1.1

@ -49,7 +49,7 @@ class SurrogatePK(object):
__table_args__ = {'extend_existing': True} __table_args__ = {'extend_existing': True}
id = db.Column(db.Integer, primary_key=True) id = Column(db.Integer, primary_key=True)
@classmethod @classmethod
def get_by_id(cls, record_id): def get_by_id(cls, record_id):
@ -70,6 +70,6 @@ def reference_col(tablename, nullable=False, pk_name='id', **kwargs):
category_id = reference_col('category') category_id = reference_col('category')
category = relationship('Category', backref='categories') category = relationship('Category', backref='categories')
""" """
return db.Column( return Column(
db.ForeignKey('{0}.{1}'.format(tablename, pk_name)), db.ForeignKey('{0}.{1}'.format(tablename, pk_name)),
nullable=nullable, **kwargs) nullable=nullable, **kwargs)

@ -5,7 +5,7 @@
<h1>Register</h1> <h1>Register</h1>
<br/> <br/>
<form id="registerForm" class="form form-register" method="POST" action="" role="form"> <form id="registerForm" class="form form-register" method="POST" action="" role="form">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/> {{ form.csrf_token }}
<div class="form-group"> <div class="form-group">
{{form.username.label}} {{form.username.label}}
{{form.username(placeholder="Username", class_="form-control")}} {{form.username(placeholder="Username", class_="form-control")}}

Loading…
Cancel
Save