The Wayback Machine - https://web.archive.org/web/20210915182339/https://github.com/topics/scaffolding
Skip to content
#

scaffolding

Here are 668 public repositories matching this topic...

NodeBootstrap - generates skeleton project for Node/Express.js with pre-configured best-practices. Kick-start your Node project development with tons of boilerplate taken care of, such as: clustering, Docker-support, database migrations, automated testing, error-handling, modularity, advanced logging, templated views, environments etc.

  • Updated Mar 19, 2021
  • JavaScript
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
craftsman

Craftsman is the workhorse behind the Wrapt framework and provides a suite of CLI commands for quickly scaffolding out new files and projects for your .NET Web APIs with simple CLI commands and configuration files.

  • Updated Sep 11, 2021
  • C#

Improve this page

Add a description, image, and links to the scaffolding 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 scaffolding topic, visit your repo's landing page and select "manage topics."

Learn more