Skip to content
This repository was archived by the owner on Jan 21, 2021. It is now read-only.

Project structure

Micah Lindley edited this page Nov 8, 2020 · 2 revisions

The itchy-cordova repository itself (before running npm install or anything else) is structured like this:

.
β”œβ”€β”€ asset/
β”‚   └── (various static assets like images, icons, etc)
β”œβ”€β”€ resources/
β”‚   └── android/
β”‚       └── (icon files and splash screens for Android)
β”œβ”€β”€ scripts/
β”‚   └── (all JavaScript scripts)
β”œβ”€β”€ styles/
β”‚   └── (all LESS stylesheets)
β”œβ”€β”€ .gitignore (list of files/folders for Git to ignore)
β”œβ”€β”€ .unibeautifyrc.json (beautifier configuration)
β”œβ”€β”€ config.xml (Cordova app configuration)
β”œβ”€β”€ index.html (front page of app)
β”œβ”€β”€ project.html (project viewer)
β”œβ”€β”€ search.html (search page)
β”œβ”€β”€ package.json (package tracker for NPM)
β”œβ”€β”€ package-lock.json (package lock for NPM)
└── README.md (README file for GitHub and more)

Clone this wiki locally