All Projects → themsaid → Wink

themsaid / Wink

Licence: mit
A Laravel-based publishing platform

Programming Languages

Vue
7211 projects
PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
Blade
752 projects

Projects that are alternatives of or similar to Wink

London
A free, open source theme for Ghost
Stars: ✭ 212 (-91.84%)
Mutual labels:  publishing, blogging
Editorial
A free, open source theme for Ghost
Stars: ✭ 164 (-93.69%)
Mutual labels:  publishing, blogging
Roon
The official Roon theme for Ghost
Stars: ✭ 137 (-94.73%)
Mutual labels:  publishing, blogging
Cusca
A ghost theme
Stars: ✭ 42 (-98.38%)
Mutual labels:  publishing, blogging
Manshar
NO LONGER BEING MAINTAINED - Arabic social publishing platform — منصة نشر مخصصة للغة العربية
Stars: ✭ 180 (-93.07%)
Mutual labels:  publishing, blogging
Ghost
Turn your audience into a business. Publishing, memberships, subscriptions and newsletters.
Stars: ✭ 39,261 (+1411.2%)
Mutual labels:  publishing, blogging
Massively
A free, open source theme for Ghost
Stars: ✭ 160 (-93.84%)
Mutual labels:  publishing, blogging
Ghost Cli
CLI Tool for installing & updating Ghost
Stars: ✭ 313 (-87.95%)
Mutual labels:  publishing, blogging
Writefreely
A clean, Markdown-based publishing platform made for writers. Write together, and build a community.
Stars: ✭ 2,479 (-4.58%)
Mutual labels:  publishing, blogging
Boo
Boo - A beautiful, clean and responsive theme for Ghost.
Stars: ✭ 176 (-93.23%)
Mutual labels:  publishing, blogging
Postleaf
Simple, beautiful publishing with Node.js.
Stars: ✭ 520 (-79.98%)
Mutual labels:  publishing, blogging
Starter
A development starter theme for Ghost
Stars: ✭ 195 (-92.49%)
Mutual labels:  publishing, blogging
Feather
Feather is a modern Swift-based content management system powered by Vapor 4.
Stars: ✭ 374 (-85.6%)
Mutual labels:  publishing, blogging
Ghost Android
🤖 Ghost for Android
Stars: ✭ 215 (-91.72%)
Mutual labels:  publishing, blogging
The Shell
Ghost Theme 👻
Stars: ✭ 362 (-86.07%)
Mutual labels:  publishing, blogging
Dawn
A minimal newsletter theme for Ghost
Stars: ✭ 140 (-94.61%)
Mutual labels:  publishing, blogging
Dope
A unique tag-based theme for Ghost
Stars: ✭ 44 (-98.31%)
Mutual labels:  blogging, publishing
Caffeine Theme
A minimalist, Material Design inspired Ghost Theme for optimal desktop and mobile experiences
Stars: ✭ 300 (-88.45%)
Mutual labels:  publishing, blogging
Tailwind Nextjs Starter Blog
This is a Next.js, Tailwind CSS blogging starter template. Comes out of the box configured with the latest technologies to make technical writing a breeze. Easily configurable and customizable. Perfect as a replacement to existing Jekyll and Hugo individual blogs.
Stars: ✭ 166 (-93.61%)
Mutual labels:  publishing, blogging
Casper
The default theme for Ghost
Stars: ✭ 2,274 (-12.47%)
Mutual labels:  publishing, blogging

wink logo

Wink adds a nice UI where you can manage a publication of any size with posts, pages, tags, and authors.

You can add photos, code blocks, featured images, social media & SEO attributes, embedded HTML (YouTube Videos, Embedded Podcasts Episodes, Tweets, ...), and markdown!

Wink is used to manage the official Laravel blog, divinglaravel.com, and many more.

Dark & Light modes available so everyone is happy 😁

Installation

Wink uses a separate database connection and authentication system so that you don't have to modify any of your project code.

To install Wink, run these commands in the root of your Laravel app:

composer require themsaid/wink
php artisan wink:install
php artisan storage:link

Configure the database connection wink is going to be using in config/wink.php. Then run:

php artisan wink:migrate

Head to yourproject.test/wink and use the provided email and password to log in.

Uploading to S3

If 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.

's3' => [
    'driver' => 's3',
    'key' => env('AWS_ACCESS_KEY_ID'),
    'secret' => env('AWS_SECRET_ACCESS_KEY'),
    'region' => env('AWS_DEFAULT_REGION'),
    'bucket' => env('AWS_BUCKET'),
    'url' => env('CDN_URL'),
    'options' => [
        'CacheControl' => 'public, max-age=315360000'
    ],
],

Note: you're going to need to install the AWS-S3 Flysystem adapter, using composer require league/flysystem-aws-s3-v3 for this to work.

Using Unsplash

Visit 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:

'unsplash' => [
    'key' => env('UNSPLASH_ACCESS_KEY'),
],

Updates

After each update, make sure you run these commands:

php artisan wink:migrate
php artisan vendor:publish --tag=wink-assets --force

Displaying your content

Wink 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:

  • Wink\WinkPost
  • Wink\WinkPage
  • Wink\WinkAuthor
  • Wink\WinkTag

To display posts and pages content, use $post->content instead of $post->body. The content will always be in HTML format while the body might be HTML or raw markdown based on the post type.

Credits

Special thanks to Caneco for the logo

Contributing

Check the contribution guide.

License

Wink is open-sourced software licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].