{"id":13463775,"url":"https://github.com/themsaid/wink","last_synced_at":"2025-05-13T23:07:03.820Z","repository":{"id":37627014,"uuid":"155972400","full_name":"themsaid/wink","owner":"themsaid","description":"A Laravel-based publishing platform","archived":false,"fork":false,"pushed_at":"2024-02-27T13:23:07.000Z","size":4609,"stargazers_count":2928,"open_issues_count":18,"forks_count":391,"subscribers_count":69,"default_branch":"1.x","last_synced_at":"2025-05-10T07:42:03.020Z","etag":null,"topics":["blogging","laravel","publishing"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/themsaid.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.text","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":"2018-11-03T10:26:06.000Z","updated_at":"2025-05-06T04:44:03.000Z","dependencies_parsed_at":"2023-02-17T05:30:57.948Z","dependency_job_id":"da43fc1f-2432-493a-8709-52d0db704fe9","html_url":"https://github.com/themsaid/wink","commit_stats":{"total_commits":252,"total_committers":52,"mean_commits":4.846153846153846,"dds":"0.48809523809523814","last_synced_commit":"0f71fc56a10e81057ec5a753e38621bad65c1064"},"previous_names":["writingink/wink"],"tags_count":25,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themsaid%2Fwink","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themsaid%2Fwink/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themsaid%2Fwink/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themsaid%2Fwink/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/themsaid","download_url":"https://codeload.github.com/themsaid/wink/tar.gz/refs/heads/1.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254041069,"owners_count":22004660,"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":["blogging","laravel","publishing"],"created_at":"2024-07-31T14:00:28.353Z","updated_at":"2025-05-13T23:06:58.807Z","avatar_url":"https://github.com/themsaid.png","language":"Vue","funding_links":[],"categories":["Vue","Projects"],"sub_categories":["Web and Publishing"],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"/art/header.png?1\" alt=\"wink logo\"\u003e\u003c/p\u003e\n\nWink adds a nice UI where you can manage a publication of any size with posts, pages, tags, and authors.\n\nYou can add photos, code blocks, featured images, social media \u0026 SEO attributes, embedded HTML (YouTube Videos, Embedded Podcasts Episodes, Tweets, ...), and markdown!\n\nWink is used to manage the [official Laravel blog](https://blog.laravel.com), [divinglaravel.com](https://divinglaravel.com), and many more.\n\nDark \u0026 Light modes available so everyone is happy 😁\n\n## Installation\n\nWink uses a separate database connection and authentication system so that you don't have to modify any of your project code.\n\nTo install Wink, run these commands in the root of your Laravel app:\n\n```sh\ncomposer require themsaid/wink\nphp artisan wink:install\nphp artisan storage:link\n```\n\n**Configure the database connection** wink is going to be using in `config/wink.php`. Then run:\n\n```sh\nphp artisan wink:migrate\n```\n\nHead to `yourproject.test/wink` and use the provided email and password to log in.\n\n## Uploading to S3\n\nIf you want to upload images to S3, update the `storage_disk` attribute in your `wink.php` configuration file to s3. Make sure your S3 disk is correctly configured in your `filesystems.php` configuration file.\n\n```php\n's3' =\u003e [\n    'driver' =\u003e 's3',\n    'key' =\u003e env('AWS_ACCESS_KEY_ID'),\n    'secret' =\u003e env('AWS_SECRET_ACCESS_KEY'),\n    'region' =\u003e env('AWS_DEFAULT_REGION'),\n    'bucket' =\u003e env('AWS_BUCKET'),\n    'url' =\u003e env('CDN_URL'),\n    'options' =\u003e [\n        'CacheControl' =\u003e 'public, max-age=315360000'\n    ],\n],\n```\n\nNote: you're going to need to install the AWS-S3 Flysystem adapter, using `composer require league/flysystem-aws-s3-v3` for this to work.\n\n## Using Unsplash\n\nVisit https://unsplash.com/oauth/applications to create a new unsplash app. Grab the 'Access Key' and add it to your `.env` file as `UNSPLASH_ACCESS_KEY`. Lastly, add unsplash to your `config/services.php` file:\n\n```php\n'unsplash' =\u003e [\n    'key' =\u003e env('UNSPLASH_ACCESS_KEY'),\n],\n```\n\n## Updates\n\nAfter each update, make sure you run these commands:\n\n```sh\nphp artisan wink:migrate\nphp artisan vendor:publish --tag=wink-assets --force\n```\n\n## Displaying your content\n\nWink is faceless, it doesn't have any opinions on how you display your content in your frontend. You can use the wink models in your controllers to display the different resources:\n\n- `Wink\\WinkPost`\n- `Wink\\WinkPage`\n- `Wink\\WinkAuthor`\n- `Wink\\WinkTag`\n\nTo display posts and pages content, use `$post-\u003econtent` instead of `$post-\u003ebody`. The content will always be in HTML format while the body might be HTML or raw markdown based on the post type.\n\n## Credits\n\n- [Mohamed Said](https://github.com/themsaid)\n- [All contributors](https://github.com/themsaid/wink/contributors)\n\nSpecial thanks to [Caneco](https://twitter.com/caneco) for the logo ✨\n\n## Contributing\n\nCheck the [contribution guide](CONTRIBUTING.md).\n\n## License\n\nWink is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemsaid%2Fwink","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthemsaid%2Fwink","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemsaid%2Fwink/lists"}