{"id":23260139,"url":"https://github.com/kostadinlambov/kl-instagram","last_synced_at":"2026-03-07T17:03:22.239Z","repository":{"id":39469535,"uuid":"196824086","full_name":"kostadinlambov/kl-instagram","owner":"kostadinlambov","description":"Stateful app built with Spring Boot, MySQL and Vue.js.","archived":false,"fork":false,"pushed_at":"2023-01-04T04:31:48.000Z","size":8594,"stargazers_count":3,"open_issues_count":23,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-03T00:41:16.204Z","etag":null,"topics":["cloudinary-api","docker","docker-compose","jwt-authentication","mysql-database","spring-boot","spring-security","springdata-jpa","vue-resource","vue-router3","vuejs2","vuelidate","vuex-persistedstate","vuex3"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kostadinlambov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-07-14T10:40:34.000Z","updated_at":"2024-06-20T04:00:27.000Z","dependencies_parsed_at":"2023-02-01T20:46:15.319Z","dependency_job_id":null,"html_url":"https://github.com/kostadinlambov/kl-instagram","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kostadinlambov/kl-instagram","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kostadinlambov%2Fkl-instagram","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kostadinlambov%2Fkl-instagram/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kostadinlambov%2Fkl-instagram/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kostadinlambov%2Fkl-instagram/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kostadinlambov","download_url":"https://codeload.github.com/kostadinlambov/kl-instagram/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kostadinlambov%2Fkl-instagram/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30222406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T17:00:40.062Z","status":"ssl_error","status_checked_at":"2026-03-07T17:00:39.026Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloudinary-api","docker","docker-compose","jwt-authentication","mysql-database","spring-boot","spring-security","springdata-jpa","vue-resource","vue-router3","vuejs2","vuelidate","vuex-persistedstate","vuex3"],"created_at":"2024-12-19T13:14:35.906Z","updated_at":"2026-03-07T17:03:22.223Z","avatar_url":"https://github.com/kostadinlambov.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kl-instagram\n\nThe application is a Stateful app built with [Spring Boot](http://spring.io/projects/spring-boot), [MySQL](https://www.mysql.com/) and [Vue.js](https://vuejs.org).\n\nFeatures:\n- Routing\n- User authentication: Register/Login/Logout\n- 3 User Roles: Root, Admin and User\n- Promoting/Demoting users to Admin/User\n- Deleting users\n- Editing user profile\n- Following/Unfollowing users\n- Creating posts\n- Creating comments\n- Liking posts\n\n\n## Requirements\n\n1. Java 11\n\n2. In order to be able to save `Images` you need to sign up to [Cloudinary](https://cloudinary.com/) and enter your credentials in the `application.properties` file of the Spring Boot app (`instagram\\server\\src\\main\\resources\\application.properties`)\n\n## Start the app\n\n### **Option 1 - Start the Client and the Server manually**\n\n#### 1. Start the Client\n\nTo start the Client you need to enter the `instagram/client` folder:\n\n```bash\n$ cd instagram/client\n```\n\nInstall all dependencies:\n\n```bash\n$ npm install\n```\n\nRun the app in the development mode:\n\n```bash\n$ npm run serve\n```\n\nOpen [http://localhost:8080](http://localhost:8080) to view it in the browser.\n\n#### 2. Start the Server\n\nGo to the root directory of the Spring Boot app:\n\n```bash\n$ cd instagram/server\n```\n\nStart the Server:\n\n```bash\n$ mvn spring-boot:run\n```\nThe Server is running on port `8000`.\n\n### **Option 2 - Start the application in Docker**\n\n1. **Start the application**\n\nGo to the project directory( `instagram/` ) and run:\n\n```bash\n$ docker-compose up -d\n```\n\nThe front-end server will start on port `9090`. To open it enter in your browser:\n\n```bash\n$ http://localhost:9090\n```\n2. **Stop the application**\n\nYou can stop the containers with:\n\n ```bash \n $ docker-compose down\n ```\n\n ## App screenshots\n\n1. **Home Page**\n\n ![App Screenshot](readme-images/home-page.PNG)\n\n2. **People Page**\n\n ![App Screenshot](readme-images/people-page.PNG)\n\n3. **User Feed Page**\n\n ![App Screenshot](readme-images/user-feed.PNG)\n\n4. **Post Page**\n\n ![App Screenshot](readme-images/post-page.PNG)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkostadinlambov%2Fkl-instagram","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkostadinlambov%2Fkl-instagram","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkostadinlambov%2Fkl-instagram/lists"}