SaaS-in-a-Flask
A SaaS starter boilerplate for Flask Applications
File Explorer
- Codecov.yaml
- Docker-Build.yaml
- Flask-Tests.yaml
- __init__.py
- app_forms.py
- bootstrap.min.css
- style.css
- screenshot.jpeg
- signin.html
- signup.html
- email_confirm.html
- email_confirm.txt
- _formhelpers.html
- base.html
- contact.html
- dashboard.html
- flash_messages.html
- index.html
- message.html
- __init__.py
- conftest.py
- test_admin.py
- test_cli.py
- test_fastapi.py
- test_forms.py
- test_models.py
- test_views.py
- __init__.py
- admin.py
- auth.py
- error_pages.py
- main.py
- __init__.py
- apis.py
- config.py
- config_dev.py
- misc_func.py
- models.py
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- index.doctree
- environment.pickle
- index.doctree
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- index.rst.txt
- alabaster.css
- basic.css
- custom.css
- doctools.js
- documentation_options.js
- file.png
- graphviz.css
- jquery-3.5.1.js
- jquery.js
- language_data.js
- minus.png
- plus.png
- pygments.css
- searchtools.js
- underscore-1.13.1.js
- underscore.js
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- index.html
- .buildinfo
- genindex.html
- index.html
- objects.inv
- py-modindex.html
- search.html
- searchindex.js
- conf.py
- index.rst
- make.bat
- Makefile
- 02e90d95b9e8_.cpython-39.pyc
- 02e90d95b9e8_.py
- alembic.ini
- env.py
- README
- script.py.mako
- admin-dashboard.png
- dashboard.png
- landing-1.png
- landing-2.png
- landing-3.png
- login.png
- register.png
- .deepsource.toml
- .gitignore
- api.py
- Dockerfile
- LICENSE
- Makefile
- Pipfile
- Pipfile.lock
- Procfile
- README.md
- requirements.txt
- simple-requirements.txt
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip3
View Details ▼
pip3
This command is an alias of `pip`.
tldr pip
View documentation for the original command:
pipenv
View Details ▼
pipenv
Simple and unified Python development workflow.
Manage packages and the virtual environment for a project.
pipenv
Create a new project:
pipenv --three
Create a new project using Python 3:
pipenv install {{package}}
Install a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
python3
View Details ▼
python3
This command is an alias of `python`.
tldr python
View documentation for the original command:
