Difference between revisions of "Courseville Project Resources"

From Ta Wiki
Jump to navigation Jump to search
(Created page with "== Docker == * https://bitpress.io/simple-approach-using-docker-with-php/?fbclid=IwAR0psAfTg9hjJGYJf9XFjmhkdWt9IytV_qEOKZhY5RKp6DdWJB896G-_uYs My Simple Approach to using Do...")
 
 
(8 intermediate revisions by the same user not shown)
Line 3: Line 3:
  
 
== Laravel ==
 
== Laravel ==
* [[https://devmarketer.io/learn/setup-laravel-project-cloned-github-com/ How to Setup a Laravel Project You Cloned from Github.com]]
+
=== Resources ===
 +
* [[https://ollieread.com/blog/2018/08/16/laravel-rbac-role-based-access-control-without-over-engineering?fbclid=IwAR1-E0rVNRct3VpMby6_8b4TcnuSVa96y252rN1wcvKJ6guW54uyLXrFB2s https://ollieread.com/blog/2018/08/16/laravel-rbac-role-based-access-control-without-over-engineering?fbclid=IwAR1-E0rVNRct3VpMby6_8b4TcnuSVa96y252rN1wcvKJ6guW54uyLXrFB2s]]
 +
* [[https://www.sitepoint.com/eloquents-polymorphic-relationships-explained/?fbclid=IwAR1vGv59a-NVbqt9Jeqk6GbvI00u0EPSfxS-0boFjsHRzmRmBFGKXL7EP0w https://www.sitepoint.com/eloquents-polymorphic-relationships-explained/?fbclid=IwAR1vGv59a-NVbqt9Jeqk6GbvI00u0EPSfxS-0boFjsHRzmRmBFGKXL7EP0w]]
 +
 
 +
=== Deploying ===
 +
* [[https://devmarketer.io/learn/setup-laravel-project-cloned-github-com/ How to Setup a Laravel Project You Cloned from Github.com]]<syntaxhighlight>
 +
composer install
 +
npm install
 +
cp .env.example .env
 +
php artisan key:generate
 +
php artisan migrate
 +
</syntaxhighlight>
 +
 
 +
=== OAUTH ===
 +
* [[https://blog.pusher.com/make-an-oauth2-server-using-laravel-passport/ Make an OAuth2 server using Laravel Passport]]
 +
* [[https://medium.com/modulr/create-api-authentication-with-passport-of-laravel-5-6-1dc2d400a7f Create API Rest with Laravel 5.6 Passport Authentication (Part 1)]]
 +
* [[https://laravel.com/docs/5.8/passport Laravel Passport]] (OAUTH Library)
 +
 
 +
=== Errors ===
 +
* [[https://laravel-news.com/laravel-5-4-key-too-long-error Specified key was too long error]]
 +
 
 +
=== Tutorials (Thai) ===
 +
* Mos Programmer
 +
** Part 0: [[https://medium.com/@mosprogramer/laravel-แล้วนายกับฉันก็ได้เจอกัน-cf62018531af https://medium.com/@mosprogramer/laravel-แล้วนายกับฉันก็ได้เจอกัน-cf62018531af]]
 +
** Part 1: [[https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-1-26bb954ac085 https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-1-26bb954ac085]]
 +
** Part 2: [[https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-2-c1d038889ec3 https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-2-c1d038889ec3]]
 +
** Part 3: [[https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-3-d0f58a4ca880 https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-3-d0f58a4ca880]]
 +
** Part 4: [[https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-4-531f2c9dabe9 https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-4-531f2c9dabe9]]
 +
** Part 5: [[https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-5-cb9f8f231dd5 https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-5-cb9f8f231dd5]]
 +
** Part 6: [[https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-6-57283e8cb600 https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-6-57283e8cb600]]
 +
** Part 7: [[https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-7-428156b6858a https://medium.com/@mosprogramer/เรียน-laravel-กับ-mos-programmer-ตอนที่-7-428156b6858a]]
 +
 
 +
== S3 ==
 +
* [[http://checkbox.resources.s3.amazonaws.com/documentation/v6/User%20Permissions%20Guide/User_Permissions_Guide.html?fbclid=IwAR0Q2fcc8S8U2l-wHrbg_nYYuFrhqdH41wrMIW-N9ktp9jLKHOpkG9CmZp0 User Permissions Guide]]

Latest revision as of 10:07, 10 June 2019

Docker

Laravel

Resources

Deploying

OAUTH

Errors

Tutorials (Thai)

S3