Code Monkey home page Code Monkey logo

duncanm.dev's Introduction

Source code of duncanm.dev

This repo contains the source code of my personal website, running on Laravel.

The site's not done yet. In fact, it'll probably never be done. Although, when it's actually live I'll create a write-up of building this site.

Roadmap

  • S3 Media uploads
  • Change when post is published
  • add errors to crud update screens
  • Fix image proxy issues for S3 through Github Markdown
  • Fix script parsing issues
  • Webmentions I am sharing the steps I did and let's see if others can confirm.

Resolved S3 Media uploads Default Test Using default config

'media' => [ 'disk' => 's3', 'folder' => 'media', 'path' => 'https://s3.amazonaws.com/media', ], Upload a file from the backend's Media Manager

Result as expected the path is correct to the media folder - Live Link

Note: the uploaded object didn't have any permissions at all, I had to manually set Public Read

Second Test Removed the media and added a slash to point to the root

'media' => [ 'disk' => 's3', 'folder' => '/', 'path' => 'https://s3.amazonaws.com/', ], Upload a file from the backend's Media Manager - No prob

File is uploaded to the bucket's root folder but the link is broken missing slash & the file name is in lower case it should be Koala.jpg - Live Link

test2

Third Test Removed the slash from folder

'media' => [ 'disk' => 's3', 'folder' => '', 'path' => 'https://s3.amazonaws.com/', ], Upload a file from the backend's Media Manager - No prob

Same as test 2 - missing slash and incorrect file name - Live Link

test3

Fourth Test Same Config as Test 3 - Create a Folder from the Backend Folder created - No prob test4 3. Open Folder and upload object from backend - Object is upload to that folder but the link is broken missing slash

duncanm.dev's People

Contributors

duncanmcclean avatar junaidjaved248 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.