-
Updated
Nov 24, 2021 - Makefile
project-template
Here are 557 public repositories matching this topic...
-
Updated
Nov 25, 2021 - C#
-
Updated
Jun 27, 2020 - Ruby
-
Updated
Nov 4, 2021 - PHP
-
Updated
Nov 2, 2021 - TypeScript
Since there is already PyScaffold 4.1, we should think about when we officially slate PyScaffold 3.* as no longer supported. Maybe we should even be removing the part in the docs mentioning PyScaffold 2.* for Python 2 projects as hopefully no one is starting new Python 2 projects anymore.
-
Updated
Oct 7, 2021 - CMake
-
Updated
Oct 28, 2021 - Haskell
-
Updated
Sep 22, 2021 - Python
-
Updated
Feb 6, 2021 - Go
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
Sep 5, 2021 - CMake
-
Updated
May 14, 2018 - Clojure
-
Updated
Oct 6, 2017 - Clojure
Now that Cloud Manager supports Java 11 and lets you configure it using the toolchains plugin
It would be nice if the archetypes takes Java version as a user input and configures the toolchains plugin out of the box.
-
Updated
Sep 14, 2021 - Makefile
-
Updated
Nov 16, 2020 - CMake
-
Updated
Nov 22, 2021 - Python
-
Updated
Sep 21, 2017 - JavaScript
-
Updated
Jun 20, 2021 - PHP
-
Updated
Jul 24, 2021 - TypeScript
-
Updated
Apr 3, 2021 - Python
-
Updated
Nov 25, 2021 - Rust
-
Updated
Apr 1, 2021
-
Updated
Oct 12, 2021 - TypeScript
-
Updated
Oct 21, 2021 - Python
-
Updated
Sep 21, 2021 - JavaScript
If for some reason, the initial bootstrapper fails (network failure, bad cache etc), creation of dune files in the project could get interrupted - the dune files that trigger the on-the-fly dune rules generation. We could
- Check in those bootstrapping dune files in the templates
or - Ensure, before running,
dune buildif dune files are missing.
Ideally, we do both.
Improve this page
Add a description, image, and links to the project-template topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the project-template topic, visit your repo's landing page and select "manage topics."
What happened?
In file:
cookiecutter-django/{{cookiecutter.project_slug}}/.pre-commit-config.yamlline number 1:exclude: 'docs|node_modules|migrations|.git|.tox'using this statement it excludes any file/directory with word 'docs' in it, for example it will exclude:What should've happened instead?
instead it should only exclud