Code Monkey home page Code Monkey logo

ionic-azure-conference-app's Introduction

Ionic 2 Conference Application

This is purely a demo of Ionic 2 with TypeScript and Azure App Services. It is still in development and originally forked from https://github.com/driftyco/ionic-conference-app.

Important!

There is not an actual Ionic Conference at this time. This project is just to show off Ionic 2 components in a real-world application. Please go through the steps in CONTRIBUTING.md before submitting an issue.

Table of Contents

Visual Studio Support

  • Install Visual Studio 2015 Update 3, this will include Tools for Apache Cordova Update 10
  • Open the file ionic-conference-app.jsproj
  • VS will restore all packages for you
  • Use the task runner explorer to execute gulp tasks

Getting Started

  • Clone this repository.
  • Want to use TypeScript? Both the master branch and the typescript branch now use TypeScript.
  • Run npm install from the project root.
  • Install the ionic CLI (npm install -g ionic@beta)
  • Run ionic serve in a terminal from the project root.
  • Profit

Note: Is your build slow? Update npm to 3.x: npm install -g npm.

Contributing

See CONTRIBUTING.md ๐ŸŽ‰๐Ÿ‘

Use Cases

App Preview

All app preview screenshots were taken by running ionic serve --lab on a retina display.

File Structure of App

ionic-conference-app/
โ”œโ”€โ”€ .github/                           * GitHub files
โ”‚   โ”œโ”€โ”€ CONTRIBUTING.md                * Documentation on contributing to this repo
โ”‚   โ””โ”€โ”€ ISSUE_TEMPLATE.md              * Template used to populate issues in this repo
|
โ”œโ”€โ”€ app/                               * Working directory
โ”‚   โ”œโ”€โ”€ pages/                         * Contains all of our pages
โ”‚   โ”‚   โ”œโ”€โ”€ about/                     * About tab page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ about.html            * AboutPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ about.ts              * AboutPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ about.scss            * AboutPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”œโ”€โ”€ account/                   * Account page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ account.html          * AccountPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ account.ts            * AccountPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ account.scss          * AccountPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ login/                     * Login page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ login.html            * LoginPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ login.ts              * LoginPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ login.scss            * LoginPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ map/                       * Map tab page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ map.html              * MapPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ map.ts                * MapPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ map.scss              * MapPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ schedule/                  * Schedule tab page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ schedule.html         * SchedulePage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ schedule.ts           * SchedulePage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ schedule.scss         * SchedulePage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ schedule-filter/           * Schedule Filter page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ schedule-filter.html  * ScheduleFilterPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ schedule-filter.ts    * ScheduleFilterPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ schedule-filter.scss  * ScheduleFilterPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ session-detail/            * Session Detail page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ session-detail.html   * SessionDetailPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ session-detail.ts     * SessionDetailPage code
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ signup/                    * Signup page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ signup.html           * SignupPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ signup.ts             * SignupPage code
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ speaker-detail/            * Speaker Detail page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ speaker-detail.html   * SpeakerDetailPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ speaker-detail.ts     * SpeakerDetailPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ speaker-detail.scss   * SpeakerDetailPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ speaker-list/              * Speakers tab page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ speaker-list.html     * SpeakerListPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ speaker-list.ts       * SpeakerListPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ speaker-list.scss     * SpeakerListPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ tabs/                      * Tabs page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ tabs.html             * TabsPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ tabs.ts               * TabsPage code
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ””โ”€โ”€ tutorial/                  * Tutorial Intro page
โ”‚   โ”‚        โ”œโ”€โ”€ tutorial.html         * TutorialPage template
โ”‚   โ”‚        โ””โ”€โ”€ tutorial.ts           * TutorialPage code
โ”‚   โ”‚        โ””โ”€โ”€ tutorial.scss         * TutorialPage stylesheet
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ providers/                     * Contains all Injectables
โ”‚   โ”‚   โ”œโ”€โ”€ conference-data.ts         * ConferenceData code
โ”‚   โ”‚   โ””โ”€โ”€ user-data.ts               * UserData code
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ theme/                         * App theme files
โ”‚   โ”‚   โ”œโ”€โ”€ app.core.scss              * App Shared Sass Imports
โ”‚   โ”‚   โ”œโ”€โ”€ app.ios.scss               * iOS Sass Imports & Variables
โ”‚   โ”‚   โ”œโ”€โ”€ app.md.scss                * Material Design Sass Imports & Variables
โ”‚   โ”‚   โ”œโ”€โ”€ app.variables.scss         * App Shared Sass Variables
โ”‚   โ”‚   โ””โ”€โ”€ app.wp.scss                * Windows Sass Imports & Variables
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ app.html                       * Application template
โ”‚   โ””โ”€โ”€ app.ts                         * Main Application configuration
โ”‚
โ”œโ”€โ”€ node_modules/                      * Node dependencies
|
โ”œโ”€โ”€ platforms/                         * Cordova generated native platform code
|
โ”œโ”€โ”€ plugins/                           * Cordova native plugins
|
โ”œโ”€โ”€ resources/                         * Images for splash screens and icons and screenshots of this app
|
โ”œโ”€โ”€ typings/                           * Contains type definitions
|
โ”œโ”€โ”€ www/                               * Folder that is copied over to the platform's www directory
โ”‚   โ”‚   
โ”‚   โ”œโ”€โ”€ build/                         * Contains auto-generated compiled content
โ”‚   โ”‚     โ”œโ”€โ”€ css/                     * Compiled CSS
โ”‚   โ”‚     โ”œโ”€โ”€ fonts/                   * Copied Fonts
โ”‚   โ”‚     โ”œโ”€โ”€ js/                      * ES5 compiled JavaScript
โ”‚   โ”‚     โ”œโ”€โ”€ pages/                   * Copied html pages
โ”‚   โ”‚     โ””โ”€โ”€ app.html                 * Copied app entry point
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ data/                          * Contains data used for the app
โ”‚   โ”‚     โ””โ”€โ”€ data.json                * App data
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ img/                           * App images
โ”‚   โ”‚
โ”‚   โ””โ”€โ”€ index.html                     * Main entry point
|
โ”œโ”€โ”€ .editorconfig                      * Defines coding styles between editors
โ”œโ”€โ”€ .gitignore                         * Example git ignore file
โ”œโ”€โ”€ LICENSE                            * Apache License
โ”œโ”€โ”€ README.md                          * This file
โ”œโ”€โ”€ config.xml                         * Cordova configuration file
โ”œโ”€โ”€ gulpfile.js                        * Contains the build tasks for our app
โ”œโ”€โ”€ ionic.config.json                  * Ionic configuration file
โ”œโ”€โ”€ package.json                       * Defines our JavaScript dependencies
โ”œโ”€โ”€ tsconfig.json                      * Defines the root files and the compiler options
โ”œโ”€โ”€ tslint.json                        * Defines the rules for the TypeScript linter
โ””โ”€โ”€ typings.json                       * Defines the external type definitions

ionic-azure-conference-app's People

Contributors

3dd13 avatar adamdbradley avatar aggarwalankush avatar brandyscarney avatar danbucholtz avatar guillenotfound avatar jgw96 avatar jmatthiesen avatar jthoms1 avatar matiastucci avatar mhartington avatar msftgits avatar patrickjs avatar ridomin avatar splaktar avatar tlancina avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ionic-azure-conference-app's Issues

Azure app services configured

Did Azure app services ever get hooked up into this project?

Other than the plugin is installed, I don't see anywhere in code where Social authentication is integrated?

I am trying to do something similar with Microsoft account auth.

Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.