cookiecutter
Here are 919 public repositories matching this topic...
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 bash and then run management commands python manage.py migrate
This wasn't working (I was getting a DATABASE_URL missing error), and after so
-
Updated
Jan 12, 2022 - Python
-
Updated
Nov 8, 2021 - Python
-
Updated
Jan 21, 2022 - Python
-
Updated
Jan 20, 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
Dec 23, 2021 - 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,
-
Updated
Jan 20, 2022 - Python
-
Updated
May 4, 2021 - Python
-
Updated
Jul 12, 2021 - Ruby
-
Updated
Jan 10, 2022 - Python
-
Updated
Feb 6, 2021 - Go
-
Updated
Feb 7, 2020 - Python
Hi,
the Dockerfile could look like this:
FROM python:3.9-alpine
ARG USER=copier
ARG GROUP=copier
ARG UID=1000
ARG GID=1000
RUN addgroup -g "${GID}" "${GROUP}" && \
adduser -h /home/"${USER}" -u "${UID}" -G "${GROUP}" -s /bin/bash -D "${USER}"
RUN set -ex; \
apk add --no-cache --virtual .build-deps \
gcc \
musl-dev; \
apk add --no-cach-
Updated
Jan 6, 2022 - Python
-
Updated
Jan 18, 2022 - Makefile
I struggled quite a lot to find this issue but as cruft is modifying the diff results from git diff taking as assumption paths start by a/ and b/ , it does not work well if the global configuration diff.mnemonicprefix is set to true.
A fix might be to force the configuration diff.mnemonicprefix=false in method https://github.com/cruft/cruft/blob/3ec724634d8509d37164f2473ddf8674f072474
-
Updated
Apr 18, 2020 - Python
-
Updated
Jan 19, 2022 - Python
-
Updated
Mar 21, 2019 - Kotlin
-
Updated
May 26, 2017 - Kotlin
-
Updated
Jan 9, 2022 - Shell
-
Updated
Jun 10, 2021 - Python
-
Updated
Jan 18, 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
-
Updated
Jan 20, 2022 - Python
-
Updated
Jun 14, 2020 - Jupyter Notebook
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."
Check cookiecutter/cookiecutter#1201 (comment).
Currently it isn't clear from the documentation what exactly cookiecutter's behaviour is in case the
--no-inputflag is provided.We should add the information about template's cache refresh and check if there's something else missing (by looking at what happens when
no_inputisTruein the source co