-
Updated
Dec 22, 2021 - Makefile
project-template
Here are 560 public repositories matching this topic...
-
Updated
Dec 17, 2021 - C#
-
Updated
Jun 27, 2020 - Ruby
-
Updated
Nov 4, 2021 - PHP
-
Updated
Dec 13, 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
Nov 29, 2021 - Makefile
-
Updated
May 14, 2018 - 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
Oct 6, 2017 - Clojure
-
Updated
Dec 23, 2021 - Python
-
Updated
Nov 16, 2020 - CMake
-
Updated
Sep 21, 2017 - JavaScript
-
Updated
Dec 23, 2021 - TypeScript
-
Updated
Jun 20, 2021 - PHP
-
Updated
Apr 3, 2021 - Python
-
Updated
Dec 23, 2021 - Rust
-
Updated
Apr 1, 2021
-
Updated
Dec 21, 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."


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