-
Updated
Nov 29, 2020 - Python
Boilerplate
A boilerplate code is a piece of code that can be reused without significant changes. When using a verbose language, the developer must write a lot only to accomplish minor functionality. Such code is called boilerplate.
Here are 331 public repositories matching this topic...
-
Updated
Nov 11, 2020 - Python
-
Updated
Nov 10, 2020 - Python
-
Updated
Jul 1, 2020 - Python
a lot of applications require scheduled jobs (eg sending emails at certain time, retrieving information, etc). Find a way to optional add https://apscheduler.readthedocs.io/en/latest/ to this boilerplate
-
Updated
Nov 23, 2020 - Python
Will be great have approach to put some arguments for make test or commands some like this.
For that we need add some like that into Makefile.
# arguments
FIRST_ARG := $(firstword $(MAKECMDGOALS))
ARGS = $(filter-out $@,$(MAKEOVERRIDES) $(MAKECMDGOALS))
MAKEFILE_PATH := $(abspath $(firstword $(MAKEFILE_LIST)))
%:
@:
and after that add ${ARGS} to our commands
te
Currently you have to specify plain paths for files you want to skip when updating the cruft repository. It would be nice if it was possible to use globs in skipped paths like so:
{
"skip": [
"**/__init__.py",
"tests/**"
]
}By the way, ideally, the cookiecutter template would even define some of those skipped files.
If th
-
Updated
Nov 4, 2020 - Python
-
Updated
Sep 26, 2018 - Python
-
Updated
Nov 13, 2020 - Python
Right now we use the default (debian based?) docker images for PostgreSQL, lets use a alpine instead to keep the file size down. We already to this on nginx and python.
-
Updated
Oct 28, 2020 - Python
-
Updated
Mar 26, 2019 - Python
-
Updated
Nov 2, 2016 - Python
-
Updated
Oct 27, 2018 - Python
-
Updated
Nov 25, 2020 - Python
-
Updated
Nov 22, 2020 - Python
-
Updated
Nov 24, 2020 - Python
-
Updated
Nov 25, 2020 - Python
-
Updated
Nov 12, 2020 - Python
-
Updated
Feb 5, 2017 - Python
-
Updated
Jul 15, 2019 - Python
-
Updated
Jun 5, 2020 - Python
-
Updated
Nov 23, 2020 - Python
- Wikipedia
- Wikipedia
There should be routes that trigger an email for "forgot" and "reset" password options. These can be celery tasks but probably need a separate container for a simple SMTP server in order to send the emails.
The fullstack Vue project has an example of a containerized SMTP server.