├── .eslintrc.js ├── .gitignore ├── README.md ├── app.html ├── assets └── images │ └── evolutio.svg ├── components ├── Course.vue ├── Events.js ├── FacebookComments.vue ├── LoginDialog.vue ├── LoginDialogSocial.vue ├── PermissionsHelper.js ├── VideoDialog.vue ├── api │ ├── api.js │ └── apimock.js ├── compra │ └── DialogCompra.vue ├── course │ └── Contents.vue ├── forum │ ├── AuthorSnippet.vue │ ├── AuthorSnippetSimple.vue │ ├── CommentSnippet.vue │ ├── CommentTextBox.vue │ ├── Comments.vue │ └── CommentsSmall.vue └── toast.vue ├── css ├── app.styl ├── main.scss └── vendor │ └── vuetify.styl ├── layouts └── default.vue ├── middleware ├── auth.js └── fwdcookies.js ├── nuxt.config.js ├── package.json ├── pages ├── a.vue ├── admail.vue ├── curso │ └── _code │ │ ├── _ref │ │ └── index.vue │ │ └── index.vue ├── index.vue ├── perfil.vue └── testgeolocation.vue ├── plugins ├── axios.js ├── fb-sdk.js ├── ga.js ├── my-filters.js ├── pagseguro_lightbox.js ├── sentry.js ├── vue2-filters.js └── vuetify.js ├── static └── images │ ├── angular.jpg │ ├── angular_banner.png │ ├── css.png │ ├── css_banner.jpg │ ├── desert.jpg │ ├── docker.png │ ├── docker_banner.jpg │ ├── github-vue.jpeg │ ├── js.png │ ├── minecraft.png │ ├── python.png │ ├── python_banner.jpg │ ├── python_zumbis_banner.jpg │ └── vue.png ├── store ├── auth.js └── toast.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | coverage/ 5 | npm-debug.log 6 | .nuxt 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/README.md -------------------------------------------------------------------------------- /app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/app.html -------------------------------------------------------------------------------- /assets/images/evolutio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/assets/images/evolutio.svg -------------------------------------------------------------------------------- /components/Course.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/Course.vue -------------------------------------------------------------------------------- /components/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/Events.js -------------------------------------------------------------------------------- /components/FacebookComments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/FacebookComments.vue -------------------------------------------------------------------------------- /components/LoginDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/LoginDialog.vue -------------------------------------------------------------------------------- /components/LoginDialogSocial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/LoginDialogSocial.vue -------------------------------------------------------------------------------- /components/PermissionsHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/PermissionsHelper.js -------------------------------------------------------------------------------- /components/VideoDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/VideoDialog.vue -------------------------------------------------------------------------------- /components/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/api/api.js -------------------------------------------------------------------------------- /components/api/apimock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/api/apimock.js -------------------------------------------------------------------------------- /components/compra/DialogCompra.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/compra/DialogCompra.vue -------------------------------------------------------------------------------- /components/course/Contents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/course/Contents.vue -------------------------------------------------------------------------------- /components/forum/AuthorSnippet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/forum/AuthorSnippet.vue -------------------------------------------------------------------------------- /components/forum/AuthorSnippetSimple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/forum/AuthorSnippetSimple.vue -------------------------------------------------------------------------------- /components/forum/CommentSnippet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/forum/CommentSnippet.vue -------------------------------------------------------------------------------- /components/forum/CommentTextBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/forum/CommentTextBox.vue -------------------------------------------------------------------------------- /components/forum/Comments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/forum/Comments.vue -------------------------------------------------------------------------------- /components/forum/CommentsSmall.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/forum/CommentsSmall.vue -------------------------------------------------------------------------------- /components/toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/components/toast.vue -------------------------------------------------------------------------------- /css/app.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/css/app.styl -------------------------------------------------------------------------------- /css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/css/main.scss -------------------------------------------------------------------------------- /css/vendor/vuetify.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/css/vendor/vuetify.styl -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/middleware/auth.js -------------------------------------------------------------------------------- /middleware/fwdcookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/middleware/fwdcookies.js -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/package.json -------------------------------------------------------------------------------- /pages/a.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/pages/a.vue -------------------------------------------------------------------------------- /pages/admail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/pages/admail.vue -------------------------------------------------------------------------------- /pages/curso/_code/_ref/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/pages/curso/_code/_ref/index.vue -------------------------------------------------------------------------------- /pages/curso/_code/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/pages/curso/_code/index.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/perfil.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/pages/perfil.vue -------------------------------------------------------------------------------- /pages/testgeolocation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/pages/testgeolocation.vue -------------------------------------------------------------------------------- /plugins/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/plugins/axios.js -------------------------------------------------------------------------------- /plugins/fb-sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/plugins/fb-sdk.js -------------------------------------------------------------------------------- /plugins/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/plugins/ga.js -------------------------------------------------------------------------------- /plugins/my-filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/plugins/my-filters.js -------------------------------------------------------------------------------- /plugins/pagseguro_lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/plugins/pagseguro_lightbox.js -------------------------------------------------------------------------------- /plugins/sentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/plugins/sentry.js -------------------------------------------------------------------------------- /plugins/vue2-filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/plugins/vue2-filters.js -------------------------------------------------------------------------------- /plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/plugins/vuetify.js -------------------------------------------------------------------------------- /static/images/angular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/angular.jpg -------------------------------------------------------------------------------- /static/images/angular_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/angular_banner.png -------------------------------------------------------------------------------- /static/images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/css.png -------------------------------------------------------------------------------- /static/images/css_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/css_banner.jpg -------------------------------------------------------------------------------- /static/images/desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/desert.jpg -------------------------------------------------------------------------------- /static/images/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/docker.png -------------------------------------------------------------------------------- /static/images/docker_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/docker_banner.jpg -------------------------------------------------------------------------------- /static/images/github-vue.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/github-vue.jpeg -------------------------------------------------------------------------------- /static/images/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/js.png -------------------------------------------------------------------------------- /static/images/minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/minecraft.png -------------------------------------------------------------------------------- /static/images/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/python.png -------------------------------------------------------------------------------- /static/images/python_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/python_banner.jpg -------------------------------------------------------------------------------- /static/images/python_zumbis_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/python_zumbis_banner.jpg -------------------------------------------------------------------------------- /static/images/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/static/images/vue.png -------------------------------------------------------------------------------- /store/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/store/auth.js -------------------------------------------------------------------------------- /store/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/store/toast.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutio/evolutio-web-client/HEAD/yarn.lock --------------------------------------------------------------------------------