techscan 1.0.2

A tool for analyzing and visualizing technology stacks in codes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: "3.8"

services:
  techscan-dev:
    build:
      context: .
      dockerfile: Dockerfile.dev
    volumes:
      - .:/workspace
      - cargo-cache:/usr/local/cargo/registry
      - target-cache:/workspace/target
    working_dir: /workspace

volumes:
  cargo-cache:
  target-cache: