This repository was archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
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)
After you're familiar with the structure, you can look at the LESS stylesheet documentation if you're interested in how the application looks or the JavaScript module documentation if you want to improve or add functionality.