-
Updated
Jul 3, 2022 - Python
cookiecutter
Here are 1,032 public repositories matching this topic...
-
Updated
Jun 24, 2022 - Python
-
Updated
Jun 14, 2022 - Python
-
Updated
Jul 7, 2022 - Python
-
Updated
Jul 8, 2022 - Python
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.
-
Updated
Apr 12, 2022 - Python
-
Updated
Jul 7, 2022 - Python
I just want to put this here!
I don't know if I will have time to do it but let me just put it here,
From a discussion we had about creating a directory structure, it was proposed to use replace(".", "/") in a task script. As this is specific to unix like filesystems it would be nice to have a helper that is OS specific. On Windows it will be \ and on unix like OS' it'll be /.
The working example (unix specific) is
# task.-
Updated
May 16, 2022 - Makefile
-
Updated
Apr 2, 2022 - Python
-
Updated
Jun 9, 2022 - Python
-
Updated
Jul 12, 2021 - Ruby
-
Updated
Jun 9, 2022 - Go
-
Updated
Feb 7, 2020 - Python
-
Updated
Jun 13, 2022 - Python
Cookiecutter knows abbreviations for Github (
gh), Bitbucket (bb), and GitLab (gl) projects [...]
https://cookiecutter.readthedocs.io/en/1.7.2/usage.html#works-directly-with-git-and-hg-mercurial-repos-too
$ cookiecutter gh:audreyr/cookiecutter-pypackage
-
Updated
Jun 26, 2022 - Python
-
Updated
Jul 8, 2022 - Python
-
Updated
Apr 25, 2022 - Python
-
Updated
Jul 8, 2022 - Python
-
Updated
Mar 21, 2019 - Kotlin
-
Updated
May 26, 2017 - Kotlin
-
Updated
Jan 9, 2022 - Shell
-
Updated
Jun 10, 2022 - Python
-
Updated
Apr 22, 2022 - Python
-
Updated
Jul 5, 2022 - 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
Improve this page
Add a description, image, and links to the cookiecutter topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cookiecutter topic, visit your repo's landing page and select "manage topics."
Hi All,
Firstly thanks for this repo, it's amazing and as you well know saves countless hours (first time using it).
Usually when I setup my django with docker projects I do it in such a way that I exec into the container
docker exec -it django bashand then run management commandspython manage.py migrateThis wasn't working (I was getting a DATABASE_URL missing error), and after so