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
26a30c6f
Commit
26a30c6f
authored
6 years ago
by
dasDachs
Browse files
Options
Downloads
Patches
Plain Diff
Added Pipfile and updated {{{cookiecutter.app_name}}/README.rst
parent
5879da53
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Pipfile
+57
-0
57 additions, 0 deletions
Pipfile
{{cookiecutter.app_name}}/README.rst
+4
-0
4 additions, 0 deletions
{{cookiecutter.app_name}}/README.rst
with
61 additions
and
0 deletions
Pipfile
0 → 100644
+
57
−
0
View file @
26a30c6f
[[source]]
url
=
"https://pypi.python.org/simple"
verify_ssl
=
true
name
=
"pypi"
[packages]
# Flask
Flask
=
"=
=
1.0
.
2
"
MarkupSafe = "
=
=
1.0
"
Werkzeug = "
=
=
0.14
.
1
"
Jinja2 = "
=
=
2.10
"
itsdangerous = "
=
=
0.24
"
click
=
">
=
5.0
"
# Database
Flask-SQLAlchemy = "
=
=
2.3
.
2
"
psycopg2 = "
=
=
2.7
.
5
"
SQLAlchemy = "
=
=
1.2
.
8
"
# Migrations
Flask-Migrate = "
=
=
2.2
.
0
"
# Forms
Flask-WTF = "
=
=
0.14
.
2
"
WTForms = "
=
=
2.2
.
1
"
# Deployment
gunicorn
=
">
=
19.1
.
1
"
# Webpack
flask-webpack = "
=
=
0.1
.
0
"
# Auth
Flask-Login = "
=
=
0.4
.
1
"
Flask-Bcrypt = "
=
=
0.7
.
1
"
# Caching
Flask-Caching
=
">
=
1.0
.
0
"
# Debug toolbar
Flask-DebugToolbar = "
=
=
0.10
.
1
"
[dev-packages]
# Testing
pytest = "
=
=
3.6
.
1
"
WebTest = "
=
=
2.0
.
29
"
factory-boy = "
=
=
2.11
.*
"
# Lint and code style
flake8 = "
=
=
3.5
.
0
"
flake8-blind-except = "
=
=
0.1
.
1
"
flake8-debugger = "
=
=
3.1
.
0
"
flake8-docstrings = "
=
=
1.3
.
0
"
flake8-isort = "
=
=
2.5
"
flake8-quotes = "
=
=
1.0
.
0
"
isort = "
=
=
4.3
.
4
"
pep8-naming = "
=
=
0.7
.
0
"
This diff is collapsed.
Click to expand it.
{{cookiecutter.app_name}}/README.rst
+
4
−
0
View file @
26a30c6f
...
@@ -19,7 +19,11 @@ Run the following commands to bootstrap your environment ::
...
@@ -19,7 +19,11 @@ Run the following commands to bootstrap your environment ::
git clone https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.app_name}}
git clone https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.app_name}}
cd {{cookiecutter.app_name}}
cd {{cookiecutter.app_name}}
pip install -r requirements/dev.txt
pip install -r requirements/dev.txt
# or use Pipenv
pipenv install --dev
npm install
npm install
npm start # run the webpack dev server and flask server using concurrently
npm start # run the webpack dev server and flask server using concurrently
...
...
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