Git Product home page Git Product logo

bravehackers17's Introduction

Digital Interactive Poster Demo

This is purely a demo of Ionic 2 with TypeScript. It is still in development.

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

Getting Started

  • Clone this repository: git clone https://github.com/driftyco/ionic-conference-app.git.
  • 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)
  • 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
|
|-- resources/
|
|-- src/
|    |-- app/
|    |    โ”œโ”€โ”€ app.component.ts
|    |    โ””โ”€โ”€ app.module.ts
|    |    โ””โ”€โ”€ app.template.html
|    |    โ””โ”€โ”€ main.ts
|    |
|    |-- assets/
|    |    โ”œโ”€โ”€ data/
|    |    |    โ””โ”€โ”€ data.json
|    |    |
|    |    โ”œโ”€โ”€ fonts/
|    |    |     โ”œโ”€โ”€ ionicons.eot
|    |    |     โ””โ”€โ”€ ionicons.svg
|    |    |     โ””โ”€โ”€ ionicons.ttf
|    |    |     โ””โ”€โ”€ ionicons.woff
|    |    |     โ””โ”€โ”€ ionicons.woff2
|    |    |
|    |    โ”œโ”€โ”€ img/
|    |
|    |-- 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
|    |    |
โ”‚    โ”‚    โ”‚โ”€โ”€ support/                   * Support page
โ”‚    โ”‚    โ”‚    โ”œโ”€โ”€ support.html          * SupportPage template
โ”‚    โ”‚    โ”‚    โ””โ”€โ”€ support.ts            * SupportPage code
โ”‚    โ”‚    โ”‚    โ””โ”€โ”€ support.scss          * SupportPage 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
|    |     โ”œโ”€โ”€ variables.scss            * App Shared Sass Variables
|    |
|    |-- index.html
|
|-- www/
|    โ”œโ”€โ”€ assets/
|    |    โ”œโ”€โ”€ data/
|    |    |    โ””โ”€โ”€ data.json
|    |    |
|    |    โ”œโ”€โ”€ fonts/
|    |    |     โ”œโ”€โ”€ ionicons.eot
|    |    |     โ””โ”€โ”€ ionicons.svg
|    |    |     โ””โ”€โ”€ ionicons.ttf
|    |    |     โ””โ”€โ”€ ionicons.woff
|    |    |     โ””โ”€โ”€ ionicons.woff2
|    |    |
|    |    โ”œโ”€โ”€ img/
|    |
|    โ””โ”€โ”€ build/
|    โ””โ”€โ”€ index.html
|
โ”œโ”€โ”€ .editorconfig                       * Defines coding styles between editors
โ”œโ”€โ”€ .gitignore                          * Example git ignore file
โ”œโ”€โ”€ LICENSE                             * Apache License
โ”œโ”€โ”€ README.md                           * This file
โ”œโ”€โ”€ config.xml                          * Cordova configuration file
โ”œโ”€โ”€ 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

bravehackers17's People

Contributors

ml5174 avatar weolopez avatar km4657 avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar  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.