chsrc/tool/rawstr4c/test/fixture/hierarchy-without-root.md
2025-07-16 11:19:18 +08:00

620 B

Java

  • java-prefix = JAVA_

Maven Config

  • maven-name = maven
<settings>
  <mirrors>
  </mirrors>
</settings>

Gradle Config

repositories {
  maven { url 'https://example.com' }
}

Python

  • python-prefix = PYTHON_

pip config

pip config set global.index-url https://example.com

conda config

  • language = yaml
channels:
  - https://example.com/conda

Docker

Dockerfile

FROM ubuntu:20.04
RUN echo "Hello World"

Multi-stage Build

FROM node:16 AS builder
WORKDIR /app
COPY . .
RUN npm install