0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Mac] ローカル開発環境のディレクトリ構成

Last updated at Posted at 2025-06-20

概要

  • 個人的なローカル開発環境のディレクトリ構成についてのメモです
  • 主にPoCやその前段階の検証に使用します
  • もしお勧め等あればコメント頂けますと嬉しいです

ローカル開発環境のディレクトリ構成

~/projects
└── development
    ├── storybook
    │   ├── poc-v1/
    │   └── poc-v2/
    ├── nextjs
    │   ├── poc-component-lib/
    │   └── poc-performance-test/
    ├── streamlit
    │   ├── poc-dashboard/
    │   └── poc-chat-ui/
    └── shared
        └── templates/

手順(と言う程でもないですが)

1. ディレクトリが存在しない場合

  • mkdir-pオプションで親ディレクトから作成する
    mkdir -p ~/projects/development/storybook/poc-v1
    

2. ディレクトリが既に存在する場合

  • mkdirでプロジェクト(用ディレクトリ)を作成する
    cd ~/projects/development/storybook/
    mkdir poc-v1
    
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?