Code Monkey home page Code Monkey logo

ionic-conference-app's Introduction

Ionic 2 Conference Application

This is purely a demo of Ionic v2.0 and is still in development.

Important!

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

Table of Contents

Getting Started

  • Clone this repository.
  • Want to use TypeScript? Check out the typescript branch: git checkout 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: Build slow? Update to npm3: npm install -g npm.

Contributing

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

Use Cases

App Preview

iPhone 6

iOS

Sessions

Filter Sessions

Speakers

Speaker Detail

Map

About

Nexus 5

MD

Sessions

Filter Sessions

Speakers

Speaker Detail

Map

About

File Structure of App

ionic-conference-app/
โ”œโ”€โ”€ app/                               * Working directory
โ”‚   โ”œโ”€โ”€ pages/                         * Contains all of our pages
โ”‚   โ”‚   โ”œโ”€โ”€ about/                     * About tab page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ about.html            * AboutPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ about.js              * AboutPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ about.scss            * AboutPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ login/                     * Login page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ login.html            * LoginPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ login.js              * LoginPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ login.scss            * LoginPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ map/                       * Map tab page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ map.html              * MapPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ map.js                * MapPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ map.scss              * MapPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ schedule/                  * Schedule tab page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ schedule.html         * SchedulePage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ schedule.js           * SchedulePage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ schedule.scss         * SchedulePage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ schedule-filter/           * Schedule Filter page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ schedule-filter.html  * ScheduleFilterPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ schedule-filter.js    * ScheduleFilterPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ schedule-filter.scss  * ScheduleFilterPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ session-detail/            * Session Detail page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ session-detail.html   * SessionDetailPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ session-detail.js     * SessionDetailPage code
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ signup/                    * Signup page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ signup.html           * SignupPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ signup.js             * SignupPage code
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ speaker-detail/            * Speaker Detail page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ speaker-detail.html   * SpeakerDetailPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ speaker-detail.js     * SpeakerDetailPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ speaker-detail.scss   * SpeakerDetailPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ speaker-list/              * Speakers tab page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ speaker-list.html     * SpeakerListPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ speaker-list.js       * SpeakerListPage code
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ speaker-list.scss     * SpeakerListPage stylesheet
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ”‚โ”€โ”€ tabs/                      * Tabs page
โ”‚   โ”‚   โ”‚    โ”œโ”€โ”€ tabs.html             * TabsPage template
โ”‚   โ”‚   โ”‚    โ””โ”€โ”€ tabs.js               * TabsPage code
โ”‚   โ”‚   โ”‚
โ”‚   โ”‚   โ””โ”€โ”€ tutorial/                  * Tutorial Intro page
โ”‚   โ”‚        โ”œโ”€โ”€ tutorial.html         * TutorialPage template
โ”‚   โ”‚        โ””โ”€โ”€ tutorial.js           * TutorialPage code
โ”‚   โ”‚        โ””โ”€โ”€ tutorial.scss         * TutorialPage stylesheet
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ providers/                     * Contains all Injectables
โ”‚   โ”‚   โ”œโ”€โ”€ conference-data.js         * ConferenceData code
โ”‚   โ”‚   โ””โ”€โ”€ user-data.js               * UserData code
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ theme/                         * App theme files
โ”‚   โ”‚   โ”œโ”€โ”€ app.core.scss              * App Shared Sass Imports
โ”‚   โ”‚   โ”œโ”€โ”€ app.ios.scss               * iOS Sass Imports & iOS Variables
โ”‚   โ”‚   โ”œโ”€โ”€ app.md.scss                * MD Sass Imports & MD Variables
โ”‚   โ”‚   โ””โ”€โ”€ app.variables.scss         * App Shared Sass Variables
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ app.html                       * Application template
โ”‚   โ””โ”€โ”€ app.js                         * Main Application configuration
โ”‚
|
โ”œโ”€โ”€ node_modules/                      * Node dependencies
|
โ”œโ”€โ”€ platforms/                         * Cordova generated native platform code
|
โ”œโ”€โ”€ plugins/                           * Cordova native plugins go
|
โ”œโ”€โ”€ resources/                         * Images for splash screens and icons
|
โ”œโ”€โ”€ www/                               * Folder that is copied over to platforms 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
โ”œโ”€โ”€ config.xml                         * Cordova configuration file
โ”œโ”€โ”€ CONTRIBUTING.md                    * Information about contributing to this project
โ”œโ”€โ”€ ionic.config.js                    * Ionic configuration file
โ”œโ”€โ”€ LICENSE                            * Apache License
โ”œโ”€โ”€ package.json                       * Our javascript dependencies
โ”œโ”€โ”€ README.md                          * This file
โ””โ”€โ”€ webpack.config.js                  * Webpack configuration file

ionic-conference-app's People

Contributors

3dd13 avatar adamdbradley avatar brandyscarney avatar jthoms1 avatar mhartington avatar patrickjs avatar splaktar avatar tlancina avatar

Watchers

 avatar

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.