├── .gitignore ├── DB-SCHEMA.md ├── README.md ├── apiserver ├── index.js └── models │ ├── activity_models.js │ ├── comment_model.js │ ├── dbconn.js │ ├── dbutils.js │ ├── device_models.js │ ├── models.js │ ├── notice_model.js │ ├── rcmd_model.js │ ├── stat_models.js │ └── user_models.js ├── assets ├── css │ └── style.css ├── icons │ ├── bookmark.svg │ ├── cfvdo.png │ ├── email.svg │ ├── facebook-f.svg │ ├── facebook.svg │ ├── facebook_log.png │ ├── google-plus-g.svg │ ├── google-plus.svg │ ├── google_log.png │ ├── heart.svg │ ├── line.svg │ ├── pinterest-p.svg │ ├── twitter.svg │ ├── vk.svg │ ├── weibo.svg │ └── whatsapp.svg └── images │ ├── android.png │ ├── apple-badge-ko.png │ ├── cicon.png │ ├── google-badge-ko.png │ ├── iphonex.png │ ├── loading.svg │ └── profile.png ├── components ├── ad-sense.vue ├── admin │ └── item-list.vue ├── bookmark.vue ├── comment.vue ├── curation-list-short.vue ├── history.vue ├── home-curation-list.vue ├── home-video-player.vue ├── item-list.vue ├── like.vue ├── nav-footer.vue ├── nav-menu-admin.vue ├── nav-menu-normal.vue ├── nav-menu-notice.vue ├── nav-menu-user.vue ├── report-comp.vue ├── share-comp.vue ├── user-settings.vue ├── video-card.vue └── youtube-input.vue ├── layouts ├── default.vue └── error.vue ├── middleware └── router-auth.js ├── nuxt.config.js ├── package.json ├── pages ├── about.vue ├── admin │ ├── comments │ │ └── _page.vue │ ├── contact │ │ └── _page.vue │ ├── curation │ │ └── _page.vue │ ├── index.vue │ ├── item │ │ └── _id.vue │ ├── notice │ │ └── _page.vue │ ├── pick │ │ └── _page.vue │ ├── report │ │ └── _page.vue │ ├── settings.vue │ ├── user │ │ └── _page.vue │ └── video │ │ └── _page.vue ├── apps.vue ├── callback.vue ├── category.vue ├── curation │ └── _id.vue ├── hot │ └── _page.vue ├── hotcf │ └── _page.vue ├── index.vue ├── info │ └── _info.vue ├── item │ └── _id.vue ├── login.vue ├── notice │ └── _id.vue ├── page │ └── _page.vue ├── recent │ └── _page.vue ├── search.vue └── user │ ├── changepassword.vue │ ├── contact.vue │ ├── profile.vue │ └── signup.vue ├── plugins ├── axios.js ├── mobile-access.js ├── vue-localstorage.js ├── vue-markdown.js ├── vue-social-sharing.js ├── vue-youtube-embed.js └── vue-youtube.js ├── static ├── icon │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png ├── profile.png └── robots.txt └── store └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/.gitignore -------------------------------------------------------------------------------- /DB-SCHEMA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/DB-SCHEMA.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/README.md -------------------------------------------------------------------------------- /apiserver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/index.js -------------------------------------------------------------------------------- /apiserver/models/activity_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/models/activity_models.js -------------------------------------------------------------------------------- /apiserver/models/comment_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/models/comment_model.js -------------------------------------------------------------------------------- /apiserver/models/dbconn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/models/dbconn.js -------------------------------------------------------------------------------- /apiserver/models/dbutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/models/dbutils.js -------------------------------------------------------------------------------- /apiserver/models/device_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/models/device_models.js -------------------------------------------------------------------------------- /apiserver/models/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/models/models.js -------------------------------------------------------------------------------- /apiserver/models/notice_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/models/notice_model.js -------------------------------------------------------------------------------- /apiserver/models/rcmd_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/models/rcmd_model.js -------------------------------------------------------------------------------- /apiserver/models/stat_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/models/stat_models.js -------------------------------------------------------------------------------- /apiserver/models/user_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/apiserver/models/user_models.js -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/icons/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/bookmark.svg -------------------------------------------------------------------------------- /assets/icons/cfvdo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/cfvdo.png -------------------------------------------------------------------------------- /assets/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/email.svg -------------------------------------------------------------------------------- /assets/icons/facebook-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/facebook-f.svg -------------------------------------------------------------------------------- /assets/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/facebook.svg -------------------------------------------------------------------------------- /assets/icons/facebook_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/facebook_log.png -------------------------------------------------------------------------------- /assets/icons/google-plus-g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/google-plus-g.svg -------------------------------------------------------------------------------- /assets/icons/google-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/google-plus.svg -------------------------------------------------------------------------------- /assets/icons/google_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/google_log.png -------------------------------------------------------------------------------- /assets/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/heart.svg -------------------------------------------------------------------------------- /assets/icons/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/line.svg -------------------------------------------------------------------------------- /assets/icons/pinterest-p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/pinterest-p.svg -------------------------------------------------------------------------------- /assets/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/twitter.svg -------------------------------------------------------------------------------- /assets/icons/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/vk.svg -------------------------------------------------------------------------------- /assets/icons/weibo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/weibo.svg -------------------------------------------------------------------------------- /assets/icons/whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/icons/whatsapp.svg -------------------------------------------------------------------------------- /assets/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/images/android.png -------------------------------------------------------------------------------- /assets/images/apple-badge-ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/images/apple-badge-ko.png -------------------------------------------------------------------------------- /assets/images/cicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/images/cicon.png -------------------------------------------------------------------------------- /assets/images/google-badge-ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/images/google-badge-ko.png -------------------------------------------------------------------------------- /assets/images/iphonex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/images/iphonex.png -------------------------------------------------------------------------------- /assets/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/images/loading.svg -------------------------------------------------------------------------------- /assets/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/assets/images/profile.png -------------------------------------------------------------------------------- /components/ad-sense.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/ad-sense.vue -------------------------------------------------------------------------------- /components/admin/item-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/admin/item-list.vue -------------------------------------------------------------------------------- /components/bookmark.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/bookmark.vue -------------------------------------------------------------------------------- /components/comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/comment.vue -------------------------------------------------------------------------------- /components/curation-list-short.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/curation-list-short.vue -------------------------------------------------------------------------------- /components/history.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/history.vue -------------------------------------------------------------------------------- /components/home-curation-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/home-curation-list.vue -------------------------------------------------------------------------------- /components/home-video-player.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/home-video-player.vue -------------------------------------------------------------------------------- /components/item-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/item-list.vue -------------------------------------------------------------------------------- /components/like.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/like.vue -------------------------------------------------------------------------------- /components/nav-footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/nav-footer.vue -------------------------------------------------------------------------------- /components/nav-menu-admin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/nav-menu-admin.vue -------------------------------------------------------------------------------- /components/nav-menu-normal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/nav-menu-normal.vue -------------------------------------------------------------------------------- /components/nav-menu-notice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/nav-menu-notice.vue -------------------------------------------------------------------------------- /components/nav-menu-user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/nav-menu-user.vue -------------------------------------------------------------------------------- /components/report-comp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/report-comp.vue -------------------------------------------------------------------------------- /components/share-comp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/share-comp.vue -------------------------------------------------------------------------------- /components/user-settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/user-settings.vue -------------------------------------------------------------------------------- /components/video-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/video-card.vue -------------------------------------------------------------------------------- /components/youtube-input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/components/youtube-input.vue -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/layouts/error.vue -------------------------------------------------------------------------------- /middleware/router-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/middleware/router-auth.js -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/package.json -------------------------------------------------------------------------------- /pages/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/about.vue -------------------------------------------------------------------------------- /pages/admin/comments/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/comments/_page.vue -------------------------------------------------------------------------------- /pages/admin/contact/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/contact/_page.vue -------------------------------------------------------------------------------- /pages/admin/curation/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/curation/_page.vue -------------------------------------------------------------------------------- /pages/admin/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/index.vue -------------------------------------------------------------------------------- /pages/admin/item/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/item/_id.vue -------------------------------------------------------------------------------- /pages/admin/notice/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/notice/_page.vue -------------------------------------------------------------------------------- /pages/admin/pick/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/pick/_page.vue -------------------------------------------------------------------------------- /pages/admin/report/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/report/_page.vue -------------------------------------------------------------------------------- /pages/admin/settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/settings.vue -------------------------------------------------------------------------------- /pages/admin/user/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/user/_page.vue -------------------------------------------------------------------------------- /pages/admin/video/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/admin/video/_page.vue -------------------------------------------------------------------------------- /pages/apps.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/apps.vue -------------------------------------------------------------------------------- /pages/callback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/callback.vue -------------------------------------------------------------------------------- /pages/category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/category.vue -------------------------------------------------------------------------------- /pages/curation/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/curation/_id.vue -------------------------------------------------------------------------------- /pages/hot/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/hot/_page.vue -------------------------------------------------------------------------------- /pages/hotcf/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/hotcf/_page.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/info/_info.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/info/_info.vue -------------------------------------------------------------------------------- /pages/item/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/item/_id.vue -------------------------------------------------------------------------------- /pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/login.vue -------------------------------------------------------------------------------- /pages/notice/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/notice/_id.vue -------------------------------------------------------------------------------- /pages/page/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/page/_page.vue -------------------------------------------------------------------------------- /pages/recent/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/recent/_page.vue -------------------------------------------------------------------------------- /pages/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/search.vue -------------------------------------------------------------------------------- /pages/user/changepassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/user/changepassword.vue -------------------------------------------------------------------------------- /pages/user/contact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/user/contact.vue -------------------------------------------------------------------------------- /pages/user/profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/user/profile.vue -------------------------------------------------------------------------------- /pages/user/signup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/pages/user/signup.vue -------------------------------------------------------------------------------- /plugins/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/plugins/axios.js -------------------------------------------------------------------------------- /plugins/mobile-access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/plugins/mobile-access.js -------------------------------------------------------------------------------- /plugins/vue-localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/plugins/vue-localstorage.js -------------------------------------------------------------------------------- /plugins/vue-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/plugins/vue-markdown.js -------------------------------------------------------------------------------- /plugins/vue-social-sharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/plugins/vue-social-sharing.js -------------------------------------------------------------------------------- /plugins/vue-youtube-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/plugins/vue-youtube-embed.js -------------------------------------------------------------------------------- /plugins/vue-youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/plugins/vue-youtube.js -------------------------------------------------------------------------------- /static/icon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/android-icon-144x144.png -------------------------------------------------------------------------------- /static/icon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/android-icon-192x192.png -------------------------------------------------------------------------------- /static/icon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/android-icon-36x36.png -------------------------------------------------------------------------------- /static/icon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/android-icon-48x48.png -------------------------------------------------------------------------------- /static/icon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/android-icon-72x72.png -------------------------------------------------------------------------------- /static/icon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/android-icon-96x96.png -------------------------------------------------------------------------------- /static/icon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon-114x114.png -------------------------------------------------------------------------------- /static/icon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon-120x120.png -------------------------------------------------------------------------------- /static/icon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon-144x144.png -------------------------------------------------------------------------------- /static/icon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon-152x152.png -------------------------------------------------------------------------------- /static/icon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon-180x180.png -------------------------------------------------------------------------------- /static/icon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon-57x57.png -------------------------------------------------------------------------------- /static/icon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon-60x60.png -------------------------------------------------------------------------------- /static/icon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon-72x72.png -------------------------------------------------------------------------------- /static/icon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon-76x76.png -------------------------------------------------------------------------------- /static/icon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /static/icon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/apple-icon.png -------------------------------------------------------------------------------- /static/icon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/browserconfig.xml -------------------------------------------------------------------------------- /static/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/favicon-16x16.png -------------------------------------------------------------------------------- /static/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/favicon-32x32.png -------------------------------------------------------------------------------- /static/icon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/favicon-96x96.png -------------------------------------------------------------------------------- /static/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/favicon.ico -------------------------------------------------------------------------------- /static/icon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/manifest.json -------------------------------------------------------------------------------- /static/icon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/ms-icon-144x144.png -------------------------------------------------------------------------------- /static/icon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/ms-icon-150x150.png -------------------------------------------------------------------------------- /static/icon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/ms-icon-310x310.png -------------------------------------------------------------------------------- /static/icon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/icon/ms-icon-70x70.png -------------------------------------------------------------------------------- /static/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/profile.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/static/robots.txt -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/my-tube/HEAD/store/index.js --------------------------------------------------------------------------------