The Wayback Machine - https://web.archive.org/web/20211227054622/https://github.com/topics/project-template
Skip to content
#

project-template

Here are 560 public repositories matching this topic...

temp5374
temp5374 commented Jun 14, 2021

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

pyscaffold
masavini
masavini commented Sep 12, 2021

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
kaushalmall
kaushalmall commented Jul 9, 2020

Now that Cloud Manager supports Java 11 and lets you configure it using the toolchains plugin

https://docs.adobe.com/content/help/en/experience-manager-cloud-service/onboarding/getting-access/creating-aem-application-project.html#using-java-11

It would be nice if the archetypes takes Java version as a user input and configures the toolchains plugin out of the box.

ManasJayanth
ManasJayanth commented Nov 9, 2020

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

  1. Check in those bootstrapping dune files in the templates
    or
  2. Ensure, before running, dune build if 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.

Curate this topic

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."

Learn more