Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgechato/insulinum-angular
Frontend of the mobile app MyBeat diabetes (designed to manage blood insulin levels. App designed for diabetics)
https://github.com/jorgechato/insulinum-angular
angular javascript public
Last synced: 27 days ago
JSON representation
Frontend of the mobile app MyBeat diabetes (designed to manage blood insulin levels. App designed for diabetics)
- Host: GitHub
- URL: https://github.com/jorgechato/insulinum-angular
- Owner: jorgechato
- Created: 2015-04-06T14:11:52.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-12T08:13:13.000Z (over 9 years ago)
- Last Synced: 2024-11-07T10:46:00.644Z (3 months ago)
- Topics: angular, javascript, public
- Language: JavaScript
- Homepage:
- Size: 3.89 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Angular Power
## Install
```zsh
$ git clone https://github.com/orggue/insulinum-angular.git
$ cd insulinum-angular
$ sudo npm install
$ bower install
```## Run
```zsh
$ gulp serve #for production
$ gulp serve:dist #for deploy enviroment
$ node index.js #for deploy enviroment
```## Prepare deploy
```zsh
$ gulp #or $ gulp serve:dist
```## Heroku
```zsh
$ git push origin deploy
```### Folder structure
```zsh
├── bower.json #Package manager
├── dev
├── dist #Dist folder only to deploy, not working on it
│ ├── assets
│ │ ├── colors.json
│ │ └── img
│ │ ├── image.jpg
│ │ └── logobeta.png
│ ├── favicon.ico
│ ├── fonts
│ │ ├── emoticons.eot
│ │ ├── emoticons.svg
│ │ ├── emoticons.ttf
│ │ ├── emoticons.woff
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── loader.svg
│ ├── images
│ │ ├── [email protected]
│ │ ├── emojis.png
│ │ └── loader.svg
│ ├── index.html
│ ├── landing.html
│ ├── scripts
│ │ ├── app-69d3f792.js
│ │ ├── dashboard
│ │ │ └── my
│ │ ├── lib
│ │ └── vendor-3e4e003e.js
│ ├── styles
│ │ ├── app-4211c43e.css
│ │ ├── media
│ │ ├── vendor
│ │ └── vendor-2187052c.css
│ └── views
├── gulp #Gulp folder to automatize services
│ ├── build.js
│ ├── inject.js
│ ├── markups.js
│ ├── scripts.js
│ ├── server.js
│ ├── styles.js
│ └── watch.js
├── gulpfile.js #MAin gulp file
├── index.js #Nodejs server just in production
├── package.json #npm dependencies
├── Procfile #heroku node app procfile
├── protractor.conf.js
├── README.md
└── src #Developer folder
├── assets #images, fonts, sounds ...
│ ├── colors.json
│ └── img
│ ├── image.jpg
│ └── logobeta.png
├── favicon.ico
├── images #Only images to emoji library
│ ├── [email protected]
│ ├── emojis.png
│ └── loader.svg
├── scripts #Javascrip files
│ ├── app.js #Main angular file
│ ├── dashboard #Differents angular parts in each folder, this one is for dashboard
│ │ └── my #Dashboard for a normal user
│ │ ├── chart.js
│ │ ├── filters.js
│ │ ├── main.controller.js
│ │ └── main.controller.spec.js
│ └── lib #Javascrip build by ours
│ │ └── demo.js
│ └── vendor #Javascrip external libraries, filters...
├── styles #css or Stylus files
│ ├── 01import.styl
│ ├── base.styl
│ ├── header.styl
│ ├── index.styl
│ ├── main-content.styl
│ ├── media
│ │ └── my-insulinum.styl
│ ├── my-insulinum.styl
│ ├── poster-header.styl
│ └── vendor
│ ├── nprogress.css
│ └── vendor.styl
└── views #Templates
├── index.html
└── landing.html
```