├── .gitignore ├── bin ├── build.sh ├── create_network.sh ├── protogen.sh ├── start.sh └── stop.sh ├── docker-compose.yml ├── example.env ├── services ├── api-gw │ ├── Dockerfile │ ├── app │ │ ├── constants.go │ │ └── logger.go │ ├── main.go │ ├── services │ │ ├── category │ │ │ └── protobuf │ │ │ │ ├── category.pb.go │ │ │ │ └── category.pb.gw.go │ │ ├── comment │ │ │ └── protobuf │ │ │ │ ├── comment.pb.go │ │ │ │ └── comment.pb.gw.go │ │ ├── post │ │ │ └── protobuf │ │ │ │ ├── post.pb.go │ │ │ │ └── post.pb.gw.go │ │ └── user │ │ │ └── protobuf │ │ │ ├── functions.go │ │ │ ├── user.pb.go │ │ │ └── user.pb.gw.go │ └── tmp │ │ └── test.html ├── category │ ├── Dockerfile │ ├── app │ │ ├── constants.go │ │ ├── errors.go │ │ └── logger.go │ ├── main.go │ └── protobuf │ │ ├── category.pb.go │ │ ├── category.proto │ │ └── functions.go ├── comment │ ├── Dockerfile │ ├── app │ │ ├── constants.go │ │ ├── errors.go │ │ └── logger.go │ ├── main.go │ └── protobuf │ │ ├── comment.pb.go │ │ ├── comment.proto │ │ └── functions.go ├── post │ ├── Dockerfile │ ├── app │ │ ├── constants.go │ │ ├── errors.go │ │ └── logger.go │ ├── main.go │ └── protobuf │ │ ├── functions.go │ │ ├── post.pb.go │ │ ├── post.proto │ │ └── services │ │ ├── category │ │ └── protobuf │ │ │ └── category.pb.go │ │ ├── comment │ │ └── protobuf │ │ │ └── comment.pb.go │ │ └── user │ │ └── protobuf │ │ └── user.pb.go └── user │ ├── Dockerfile │ ├── app │ ├── constants.go │ ├── errors.go │ └── logger.go │ ├── main.go │ └── protobuf │ ├── functions.go │ ├── user.pb.go │ └── user.proto └── web ├── Dockerfile ├── config ├── letsencrypt │ ├── certs │ │ └── .gitkeep │ └── cli.ini └── nginx │ └── default.conf └── frontend ├── .gitignore ├── README.md ├── babel.config.js ├── dist ├── css │ ├── app.aadf317d.css │ └── chunk-vendors.0917fb7c.css ├── favicon.ico ├── fonts │ └── MaterialIcons.564aac0f.woff2 ├── images │ ├── author.jpg │ ├── cover.png │ └── house.jpg ├── index.html ├── js │ ├── app.22ef4177.js │ ├── app.22ef4177.js.map │ ├── chunk-vendors.d99790ee.js │ └── chunk-vendors.d99790ee.js.map └── swagger │ ├── category.html │ ├── comment.html │ ├── post.html │ └── user.html ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── images │ ├── author.jpg │ ├── cover.png │ └── house.jpg ├── index.html └── swagger │ ├── category.html │ ├── comment.html │ ├── post.html │ └── user.html └── src ├── App.vue ├── assets ├── fonts │ └── MaterialIcons.woff2 ├── logo.png └── logo.svg ├── components ├── Footer.vue ├── Index.vue ├── Navbar.vue ├── category │ └── Form.vue ├── post │ ├── PostForm.vue │ ├── PostView.vue │ ├── PostsAdmin.vue │ ├── PostsByAuthor.vue │ └── PostsByCategory.vue ├── user │ ├── SignInForm.vue │ └── SignUpForm.vue └── widgets │ ├── Author.vue │ ├── AuthorList.vue │ ├── Breadcrumbs.vue │ ├── CaregoryList.vue │ └── PostList.vue ├── main.js ├── plugins └── vuetify.js ├── routes.js ├── store └── index.js └── swagger-ui └── services ├── category └── protobuf │ └── category.swagger.json ├── comment └── protobuf │ └── comment.swagger.json ├── post └── protobuf │ ├── index.html │ └── post.swagger.json └── user └── protobuf ├── index.html └── user.swagger.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/.gitignore -------------------------------------------------------------------------------- /bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/bin/build.sh -------------------------------------------------------------------------------- /bin/create_network.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | docker network create -d bridge blog_msa-net -------------------------------------------------------------------------------- /bin/protogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/bin/protogen.sh -------------------------------------------------------------------------------- /bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/bin/start.sh -------------------------------------------------------------------------------- /bin/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/bin/stop.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/example.env -------------------------------------------------------------------------------- /services/api-gw/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/Dockerfile -------------------------------------------------------------------------------- /services/api-gw/app/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/app/constants.go -------------------------------------------------------------------------------- /services/api-gw/app/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/app/logger.go -------------------------------------------------------------------------------- /services/api-gw/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/main.go -------------------------------------------------------------------------------- /services/api-gw/services/category/protobuf/category.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/services/category/protobuf/category.pb.go -------------------------------------------------------------------------------- /services/api-gw/services/category/protobuf/category.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/services/category/protobuf/category.pb.gw.go -------------------------------------------------------------------------------- /services/api-gw/services/comment/protobuf/comment.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/services/comment/protobuf/comment.pb.go -------------------------------------------------------------------------------- /services/api-gw/services/comment/protobuf/comment.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/services/comment/protobuf/comment.pb.gw.go -------------------------------------------------------------------------------- /services/api-gw/services/post/protobuf/post.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/services/post/protobuf/post.pb.go -------------------------------------------------------------------------------- /services/api-gw/services/post/protobuf/post.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/services/post/protobuf/post.pb.gw.go -------------------------------------------------------------------------------- /services/api-gw/services/user/protobuf/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/services/user/protobuf/functions.go -------------------------------------------------------------------------------- /services/api-gw/services/user/protobuf/user.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/services/user/protobuf/user.pb.go -------------------------------------------------------------------------------- /services/api-gw/services/user/protobuf/user.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/api-gw/services/user/protobuf/user.pb.gw.go -------------------------------------------------------------------------------- /services/api-gw/tmp/test.html: -------------------------------------------------------------------------------- 1 | 111 -------------------------------------------------------------------------------- /services/category/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/category/Dockerfile -------------------------------------------------------------------------------- /services/category/app/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/category/app/constants.go -------------------------------------------------------------------------------- /services/category/app/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/category/app/errors.go -------------------------------------------------------------------------------- /services/category/app/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/category/app/logger.go -------------------------------------------------------------------------------- /services/category/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/category/main.go -------------------------------------------------------------------------------- /services/category/protobuf/category.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/category/protobuf/category.pb.go -------------------------------------------------------------------------------- /services/category/protobuf/category.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/category/protobuf/category.proto -------------------------------------------------------------------------------- /services/category/protobuf/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/category/protobuf/functions.go -------------------------------------------------------------------------------- /services/comment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/comment/Dockerfile -------------------------------------------------------------------------------- /services/comment/app/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/comment/app/constants.go -------------------------------------------------------------------------------- /services/comment/app/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/comment/app/errors.go -------------------------------------------------------------------------------- /services/comment/app/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/comment/app/logger.go -------------------------------------------------------------------------------- /services/comment/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/comment/main.go -------------------------------------------------------------------------------- /services/comment/protobuf/comment.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/comment/protobuf/comment.pb.go -------------------------------------------------------------------------------- /services/comment/protobuf/comment.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/comment/protobuf/comment.proto -------------------------------------------------------------------------------- /services/comment/protobuf/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/comment/protobuf/functions.go -------------------------------------------------------------------------------- /services/post/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/Dockerfile -------------------------------------------------------------------------------- /services/post/app/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/app/constants.go -------------------------------------------------------------------------------- /services/post/app/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/app/errors.go -------------------------------------------------------------------------------- /services/post/app/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/app/logger.go -------------------------------------------------------------------------------- /services/post/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/main.go -------------------------------------------------------------------------------- /services/post/protobuf/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/protobuf/functions.go -------------------------------------------------------------------------------- /services/post/protobuf/post.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/protobuf/post.pb.go -------------------------------------------------------------------------------- /services/post/protobuf/post.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/protobuf/post.proto -------------------------------------------------------------------------------- /services/post/protobuf/services/category/protobuf/category.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/protobuf/services/category/protobuf/category.pb.go -------------------------------------------------------------------------------- /services/post/protobuf/services/comment/protobuf/comment.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/protobuf/services/comment/protobuf/comment.pb.go -------------------------------------------------------------------------------- /services/post/protobuf/services/user/protobuf/user.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/post/protobuf/services/user/protobuf/user.pb.go -------------------------------------------------------------------------------- /services/user/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/user/Dockerfile -------------------------------------------------------------------------------- /services/user/app/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/user/app/constants.go -------------------------------------------------------------------------------- /services/user/app/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/user/app/errors.go -------------------------------------------------------------------------------- /services/user/app/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/user/app/logger.go -------------------------------------------------------------------------------- /services/user/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/user/main.go -------------------------------------------------------------------------------- /services/user/protobuf/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/user/protobuf/functions.go -------------------------------------------------------------------------------- /services/user/protobuf/user.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/user/protobuf/user.pb.go -------------------------------------------------------------------------------- /services/user/protobuf/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/services/user/protobuf/user.proto -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/config/letsencrypt/certs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/config/letsencrypt/cli.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/config/letsencrypt/cli.ini -------------------------------------------------------------------------------- /web/config/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/config/nginx/default.conf -------------------------------------------------------------------------------- /web/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/.gitignore -------------------------------------------------------------------------------- /web/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/README.md -------------------------------------------------------------------------------- /web/frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/babel.config.js -------------------------------------------------------------------------------- /web/frontend/dist/css/app.aadf317d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/css/app.aadf317d.css -------------------------------------------------------------------------------- /web/frontend/dist/css/chunk-vendors.0917fb7c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/css/chunk-vendors.0917fb7c.css -------------------------------------------------------------------------------- /web/frontend/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/favicon.ico -------------------------------------------------------------------------------- /web/frontend/dist/fonts/MaterialIcons.564aac0f.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/fonts/MaterialIcons.564aac0f.woff2 -------------------------------------------------------------------------------- /web/frontend/dist/images/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/images/author.jpg -------------------------------------------------------------------------------- /web/frontend/dist/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/images/cover.png -------------------------------------------------------------------------------- /web/frontend/dist/images/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/images/house.jpg -------------------------------------------------------------------------------- /web/frontend/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/index.html -------------------------------------------------------------------------------- /web/frontend/dist/js/app.22ef4177.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/js/app.22ef4177.js -------------------------------------------------------------------------------- /web/frontend/dist/js/app.22ef4177.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/js/app.22ef4177.js.map -------------------------------------------------------------------------------- /web/frontend/dist/js/chunk-vendors.d99790ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/js/chunk-vendors.d99790ee.js -------------------------------------------------------------------------------- /web/frontend/dist/js/chunk-vendors.d99790ee.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/js/chunk-vendors.d99790ee.js.map -------------------------------------------------------------------------------- /web/frontend/dist/swagger/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/swagger/category.html -------------------------------------------------------------------------------- /web/frontend/dist/swagger/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/swagger/comment.html -------------------------------------------------------------------------------- /web/frontend/dist/swagger/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/swagger/post.html -------------------------------------------------------------------------------- /web/frontend/dist/swagger/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/dist/swagger/user.html -------------------------------------------------------------------------------- /web/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/package-lock.json -------------------------------------------------------------------------------- /web/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/package.json -------------------------------------------------------------------------------- /web/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/public/favicon.ico -------------------------------------------------------------------------------- /web/frontend/public/images/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/public/images/author.jpg -------------------------------------------------------------------------------- /web/frontend/public/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/public/images/cover.png -------------------------------------------------------------------------------- /web/frontend/public/images/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/public/images/house.jpg -------------------------------------------------------------------------------- /web/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/public/index.html -------------------------------------------------------------------------------- /web/frontend/public/swagger/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/public/swagger/category.html -------------------------------------------------------------------------------- /web/frontend/public/swagger/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/public/swagger/comment.html -------------------------------------------------------------------------------- /web/frontend/public/swagger/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/public/swagger/post.html -------------------------------------------------------------------------------- /web/frontend/public/swagger/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/public/swagger/user.html -------------------------------------------------------------------------------- /web/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/App.vue -------------------------------------------------------------------------------- /web/frontend/src/assets/fonts/MaterialIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/assets/fonts/MaterialIcons.woff2 -------------------------------------------------------------------------------- /web/frontend/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/assets/logo.png -------------------------------------------------------------------------------- /web/frontend/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/assets/logo.svg -------------------------------------------------------------------------------- /web/frontend/src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/Footer.vue -------------------------------------------------------------------------------- /web/frontend/src/components/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/Index.vue -------------------------------------------------------------------------------- /web/frontend/src/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/Navbar.vue -------------------------------------------------------------------------------- /web/frontend/src/components/category/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/category/Form.vue -------------------------------------------------------------------------------- /web/frontend/src/components/post/PostForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/post/PostForm.vue -------------------------------------------------------------------------------- /web/frontend/src/components/post/PostView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/post/PostView.vue -------------------------------------------------------------------------------- /web/frontend/src/components/post/PostsAdmin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/post/PostsAdmin.vue -------------------------------------------------------------------------------- /web/frontend/src/components/post/PostsByAuthor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/post/PostsByAuthor.vue -------------------------------------------------------------------------------- /web/frontend/src/components/post/PostsByCategory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/post/PostsByCategory.vue -------------------------------------------------------------------------------- /web/frontend/src/components/user/SignInForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/user/SignInForm.vue -------------------------------------------------------------------------------- /web/frontend/src/components/user/SignUpForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/user/SignUpForm.vue -------------------------------------------------------------------------------- /web/frontend/src/components/widgets/Author.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/widgets/Author.vue -------------------------------------------------------------------------------- /web/frontend/src/components/widgets/AuthorList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/widgets/AuthorList.vue -------------------------------------------------------------------------------- /web/frontend/src/components/widgets/Breadcrumbs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/widgets/Breadcrumbs.vue -------------------------------------------------------------------------------- /web/frontend/src/components/widgets/CaregoryList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/widgets/CaregoryList.vue -------------------------------------------------------------------------------- /web/frontend/src/components/widgets/PostList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/components/widgets/PostList.vue -------------------------------------------------------------------------------- /web/frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/main.js -------------------------------------------------------------------------------- /web/frontend/src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/plugins/vuetify.js -------------------------------------------------------------------------------- /web/frontend/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/routes.js -------------------------------------------------------------------------------- /web/frontend/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/store/index.js -------------------------------------------------------------------------------- /web/frontend/src/swagger-ui/services/category/protobuf/category.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/swagger-ui/services/category/protobuf/category.swagger.json -------------------------------------------------------------------------------- /web/frontend/src/swagger-ui/services/comment/protobuf/comment.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/swagger-ui/services/comment/protobuf/comment.swagger.json -------------------------------------------------------------------------------- /web/frontend/src/swagger-ui/services/post/protobuf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/swagger-ui/services/post/protobuf/index.html -------------------------------------------------------------------------------- /web/frontend/src/swagger-ui/services/post/protobuf/post.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/swagger-ui/services/post/protobuf/post.swagger.json -------------------------------------------------------------------------------- /web/frontend/src/swagger-ui/services/user/protobuf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/swagger-ui/services/user/protobuf/index.html -------------------------------------------------------------------------------- /web/frontend/src/swagger-ui/services/user/protobuf/user.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msa-library/blog/HEAD/web/frontend/src/swagger-ui/services/user/protobuf/user.swagger.json --------------------------------------------------------------------------------