{"id":15011348,"url":"https://github.com/nickimola/angular-and-ionic-v1-starter","last_synced_at":"2026-02-26T17:36:23.588Z","repository":{"id":143998250,"uuid":"112756009","full_name":"nickimola/angular-and-ionic-V1-starter","owner":"nickimola","description":"This project uses AngularJS v1 and Ionic v1 with Coffeescript, Less CSS and Gulp to easily create and initialise a starter app. Please follow the readme file below for instructions and project structure","archived":false,"fork":false,"pushed_at":"2017-12-01T15:49:43.000Z","size":126,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-12T22:43:52.033Z","etag":null,"topics":["angular","coffeescript","gulp","ionic","lesscss"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nickimola.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-12-01T15:35:26.000Z","updated_at":"2020-07-18T04:49:18.000Z","dependencies_parsed_at":"2023-07-16T11:02:17.790Z","dependency_job_id":null,"html_url":"https://github.com/nickimola/angular-and-ionic-V1-starter","commit_stats":{"total_commits":1,"total_committers":1,"mean_commits":1.0,"dds":0.0,"last_synced_commit":"ca32f975ee36f95839c17b3597b887b3bfb8f9ba"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/nickimola/angular-and-ionic-V1-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickimola%2Fangular-and-ionic-V1-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickimola%2Fangular-and-ionic-V1-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickimola%2Fangular-and-ionic-V1-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickimola%2Fangular-and-ionic-V1-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nickimola","download_url":"https://codeload.github.com/nickimola/angular-and-ionic-V1-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickimola%2Fangular-and-ionic-V1-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281862821,"owners_count":26574710,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-30T02:00:06.501Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","coffeescript","gulp","ionic","lesscss"],"created_at":"2024-09-24T19:40:46.675Z","updated_at":"2025-10-30T19:04:56.867Z","avatar_url":"https://github.com/nickimola.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Angular \u0026 Ionic (v1) Starter \n\n### What's used\n* [Angular v1](https://angularjs.org/)\n* [Ionic Framework v1](http://ionicframework.com/docs/v1/)\n* [Cordova](https://cordova.apache.org/)\n* [Gulp](http://gulpjs.com/)\n\nPre Processors:\n* [Coffeescript](http://coffeescript.org/)\n* [Less](http://lesscss.org/)\n\n\n## Getting Started\n* Clone this repository `git clone git@bitbucket.org:nickimola/ionic-app-starter.git`.\n* Navigate inside the repository just cloned `cd ionic-app-starter`.\n* Install the global npm modules `npm install -g bower yo`\n* Install the local npm modules `npm install`.\n* Install bower modules `bower install`.\n* Prepare the app by adding the right values to `info.json` (located in the root of the project).\n* Run `gulp init` to initialize the app so that it uses the properties from _info.json_ (modified in the step above) .\n* Start a live reload server by running `ionic serve` (check the [ionic CLI](https://ionicframework.com/docs/cli/#commands) for the full documentation).\n* Open the browser and navigate to the right address, you should see a \"Hello World\" screen.\n\n## The project's structure\nThe structure of the project is quite simple.\n\nThere are two main folders in the project:\n* `src` - this contains all the files that you can safely edit\n* `www` - this contains all the compiled files and will be served in the browser.\n\nThe `src` folder's structure is the following:\n\n* `app` - contains `app.coffee` (to bootstrap the app) and `variables.less` (to create all your less variables to be used in the whole project)\n* `assets` - contains all the assets required by your app (fonts, img, etc)\n* `directives` - contains all the directives that you need in your app \n* `sections` - contains all the pages (sections) of your app.\n\nEverytime you add something inside the `assets` folder, you need to stop the live reload and run `gulp build`. This will re-compile all the files as well as mirroring the `assets` folder inside `www`, making your newly added assets available in the browser.\n\n\u003e NOTE: Do not edit any files outside the `src` folder, as this will likely be replaced during the compiling process or simply not included in the app.\n\n#### Add new section (page) to the app\n\n`scaffolt -g scaffolt-generators section {pageName}`\n\n#### Add new directive to the app\n\n`scaffolt -g scaffolt-generators directive {directiveName}`\n\n\u003e Note: All the automated templates are located inside `scaffolt-generators` and they use handlebars to generate files. Feel free to add your own if needed or modify the exeisting ones if required.\n\n## Build\n#### Build for development\n`gulp build` - This will build the app NOT minified\n\n#### Build for production\n`gulp build-p` - This will build the app minified\n\n\u003e Note: \n\u003e * All the files with extension `*.less` will be compiled to `style.css`\n\u003e * All the files with extension `*.coffee` will be compiled to `app.js`\u003e \n\u003e * All the files with extension `*.tpl.html` will be compiled to a javascript file called `templates.js` which is used by angular's `ngAnnotate` to cache the templates.\n\u003e * All the files inside `assets/` will be copied from `src` to `www` with the same folder structure \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickimola%2Fangular-and-ionic-v1-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnickimola%2Fangular-and-ionic-v1-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickimola%2Fangular-and-ionic-v1-starter/lists"}