Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Cookiecutter flask
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Remy Mudingay
Cookiecutter flask
Commits
eeb94762
Commit
eeb94762
authored
10 years ago
by
Steven Loria
Browse files
Options
Downloads
Patches
Plain Diff
Upgrade to Flask-SqlAlchemy 2.0 (dev) and add custom SignallingSession
Necessary for tests to work
parent
de741805
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
{{cookiecutter.app_name}}/requirements/prod.txt
+2
-2
2 additions, 2 deletions
{{cookiecutter.app_name}}/requirements/prod.txt
{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/extensions.py
+33
-2
33 additions, 2 deletions
...cutter.app_name}}/{{cookiecutter.app_name}}/extensions.py
with
35 additions
and
4 deletions
{{cookiecutter.app_name}}/requirements/prod.txt
+
2
−
2
View file @
eeb94762
...
...
@@ -8,8 +8,8 @@ Jinja2==2.7
itsdangerous==0.23
# Database
F
lask-
SQLA
lchemy
==1.0
SQLAlchemy==0.
8.3
-e git://github.com/mitsuhiko/f
lask-
sqla
lchemy
.git#egg=flask-sqlalchemy
SQLAlchemy==0.
9.4
# Migrations
Flask-Migrate>=1.0.0
...
...
This diff is collapsed.
Click to expand it.
{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/extensions.py
+
33
−
2
View file @
eeb94762
...
...
@@ -9,8 +9,39 @@ bcrypt = Bcrypt()
from
flask.ext.login
import
LoginManager
login_manager
=
LoginManager
()
from
flask.ext.sqlalchemy
import
SQLAlchemy
db
=
SQLAlchemy
()
from
flask.ext.sqlalchemy
import
SQLAlchemy
,
SignallingSession
,
SessionBase
class
_SignallingSession
(
SignallingSession
):
"""
A subclass of `SignallingSession` that allows for `binds` to be specified
in the `options` keyword arguments.
"""
def
__init__
(
self
,
db
,
autocommit
=
False
,
autoflush
=
True
,
**
options
):
self
.
app
=
db
.
get_app
()
self
.
_model_changes
=
{}
self
.
emit_modification_signals
=
\
self
.
app
.
config
[
'
SQLALCHEMY_TRACK_MODIFICATIONS
'
]
bind
=
options
.
pop
(
'
bind
'
,
None
)
if
bind
is
None
:
bind
=
db
.
engine
binds
=
options
.
pop
(
'
binds
'
,
None
)
if
binds
is
None
:
binds
=
db
.
get_binds
(
self
.
app
)
SessionBase
.
__init__
(
self
,
autocommit
=
autocommit
,
autoflush
=
autoflush
,
bind
=
bind
,
binds
=
binds
,
**
options
)
class
_SQLAlchemy
(
SQLAlchemy
):
"""
A subclass of `SQLAlchemy` that uses `_SignallingSession`.
"""
def
create_session
(
self
,
options
):
return
_SignallingSession
(
self
,
**
options
)
db
=
_SQLAlchemy
()
from
flask.ext.migrate
import
Migrate
migrate
=
Migrate
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment