{"id":24779222,"url":"https://github.com/dev-sire/visage-studios","last_synced_at":"2025-03-24T03:28:23.103Z","repository":{"id":244429505,"uuid":"815220359","full_name":"dev-sire/Visage-Studios","owner":"dev-sire","description":"VisageStudios: An online Cloud-based Photo editor to store your visuals to Cloudinary!","archived":false,"fork":false,"pushed_at":"2024-06-15T13:20:55.000Z","size":149,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-29T09:41:10.083Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/dev-sire.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-14T16:03:07.000Z","updated_at":"2024-08-26T10:14:08.000Z","dependencies_parsed_at":"2024-06-14T17:39:02.813Z","dependency_job_id":"d77f6411-cd01-41aa-833e-58760c9e0a5e","html_url":"https://github.com/dev-sire/Visage-Studios","commit_stats":null,"previous_names":["dev-sire/visage-studios"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-sire%2FVisage-Studios","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-sire%2FVisage-Studios/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-sire%2FVisage-Studios/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-sire%2FVisage-Studios/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dev-sire","download_url":"https://codeload.github.com/dev-sire/Visage-Studios/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245203861,"owners_count":20577236,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2025-01-29T09:36:14.367Z","updated_at":"2025-03-24T03:28:23.077Z","avatar_url":"https://github.com/dev-sire.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📷 Visage Studio\n\nA Cloud Based Platform for building a dynamic image gallery with Cloudinary.\n\nFeatures include:\n* Gallery view of all Photobox-uploaded images\n* Image viewer with AI-powered editing\n* Filters and Effects\n* Creations including Collages, Animations, \u0026 Color Pop\n\n## What's Inside\n\nTechnology used to build Photobox includes:\n\n* Next.js App Router\n* React Server Components for initial resource queries\n* Suspense loading states\n* Styling with Tailwind CSS\n* Components using shadcn/ui\n* Request management with Tanstack React Query\n* Cloudinary for image storage, optimization, and transformation\n\n## Getting Started\n\n1. Create a new local project\n\n```\nnpx create-next-app@latest https://github.com/dev-sire/Visage-Studios VisageStudio\n```\n\nYou can also fork or clone the project manually!\n\n2. Create a .env.local file or configure your environment variables to include:\n\n```\nNEXT_PUBLIC_CLOUDINARY_CLOUD_NAME=\"\u003cYour Cloud Name\u003e\"\nNEXT_PUBLIC_CLOUDINARY_API_KEY=\"\u003cYour API Key\u003e\"\nCLOUDINARY_API_SECRET=\"\u003cYour API Secret\u003e\"\n```\n\n3. Install dependencies and start the project.\n\n```\nnpm install\nnpm run dev\n```\n\nAnd you should now be running Photobox at http://localhost:3000/!\n\n## Using Photobox\n\nTo start using Photobox, simply upload some images! The Upload button can be found on the top right of the library page.\n\nAfter uploading, the image should now show up in your gallery where you can either start adding Creations from your image or edit it by navigating to a particular image.\n\nPhotobox takes advantage of both folders and tags to organize the images in your Cloudinary account. By default, all images are uploaded to a \"photobox\" folder and tagged with \"photobox\" and other tags prepended with \"photobox-\". This makes it easy to keep track of what images should be included in Photobox without cluttering your existing account. \n\n## Configuration\n\nPhotobox ships with some default configurations to help you get started, but is\ncustomizable based on your needs or preferences.\n\n### Customization\n\nTo personalize your Photobox without manually updating the code, a few options\nare made available for configuration.\n\nThe default values used for these are:\n\n```jsx\nconst config = {\n  title: 'Photobox'\n  logo: \u003cFocus className=\"w-6 h-6\" /\u003e,\n};\n```\n\nYou can configure these values inside of the `theme.config.tsx` file as needed:\n\n```jsx\nconst config = {\n  title: '\u003cYour Title\u003e'\n  logo: \u003cYourLogo /\u003e,\n}\n```\n\n### Asset Organization\n\nTags and folders are used to organize assets which are displayed in the app and\nalso used for functional needs like providing Favorites and Trash capabilities.\n\nThe default values used for these are:\n\n```jsx\nconst config = {\n  assetsFolder:  'photobox',\n  assetsTag: 'photobox',\n  libraryTag: 'photobox-library',\n  creationTag: 'photobox-creation',\n  favoritesTag: 'photobox-favorite',\n  trashTag: 'photobox-trash',\n};\n```\n\nThere are two ways that you can configure these values, by using the `theme.config.tsx` file\nor by configuring environment variables.\n\nUsing `theme.config.tsx`, add the following properties as needed:\n\n```jsx\nconst config = {\n  assetsFolder: '\u003cYour Folder\u003e';\n  assetsTag: '\u003cYour Tag\u003e';\n  libraryTag: '\u003cYour Tag\u003e';\n  creationTag: '\u003cYour Tag\u003e';\n  favoritesTag: '\u003cYour Tag\u003e';\n  trashTag: '\u003cYour Tag\u003e';\n}\n```\n\nUsing environment variables, configure the following as needed:\n\n```shell\nNEXT_PUBLIC_CLOUDINARY_ASSETS_FOLDER=\"\u003cYour Folder\u003e\"\nNEXT_PUBLIC_CLOUDINARY_ASSETS_TAG=\"\u003cYour Tag\u003e\"\nNEXT_PUBLIC_CLOUDINARY_LIBRARY_TAG=\"\u003cYour Tag\u003e\"\nNEXT_PUBLIC_CLOUDINARY_CREATION_TAG=\"\u003cYour Tag\u003e\"\nNEXT_PUBLIC_CLOUDINARY_FAVORITES_TAG=\"\u003cYour Tag\u003e\"\nNEXT_PUBLIC_CLOUDINARY_TRASH_TAG=\"\u003cYour Tag\u003e\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-sire%2Fvisage-studios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdev-sire%2Fvisage-studios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-sire%2Fvisage-studios/lists"}