Skip to content

4GeeksAcademy/git-interactive-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Git Tutorial - 4Geeks

JSON Structure for Repo Folders

  • img
    • picture.jpg
  • dist
    • bundle
      • bundled_files.txt
    • style.css
  • index.html
  • favicon.ico

This is the JSON necessary to create that folder structure:

"root-folder": [
    { "img": [ //folder
        "picture.jpg" 
    ] },
    { "dist": [ // folder
        { "bundle": [ // subfolder
            "bundled_files.txt"
        ] },
        "style.css"
    ] },
    "index.html", // file in root folder
    "favicon.ico"  // file in root folder
]

Releases

No releases published

Packages

No packages published

Contributors 7