posty-traversy-media
Posty project code from the Traversy Media Laravel crash course
File Explorer
Download Latest Version (.zip)- Kernel.php
- Handler.php
- LoginController.php
- LogoutController.php
- RegisterController.php
- Controller.php
- DashboardController.php
- PostController.php
- PostLikeController.php
- UserPostController.php
- Authenticate.php
- EncryptCookies.php
- PreventRequestsDuringMaintenance.php
- RedirectIfAuthenticated.php
- TrimStrings.php
- TrustHosts.php
- TrustProxies.php
- VerifyCsrfToken.php
- Kernel.php
- PostLiked.php
- Like.php
- Post.php
- User.php
- PostPolicy.php
- AppServiceProvider.php
- AuthServiceProvider.php
- BroadcastServiceProvider.php
- EventServiceProvider.php
- RouteServiceProvider.php
- .gitignore
- app.php
- app.php
- auth.php
- broadcasting.php
- cache.php
- cors.php
- database.php
- filesystems.php
- hashing.php
- logging.php
- mail.php
- queue.php
- services.php
- session.php
- view.php
- PostFactory.php
- UserFactory.php
- 2014_10_12_000000_create_users_table.php
- 2014_10_12_100000_create_password_resets_table.php
- 2019_08_19_000000_create_failed_jobs_table.php
- 2020_10_15_100535_add_username_to_users_table.php
- 2020_10_15_113440_create_posts_table.php
- 2020_10_15_122016_create_likes_table.php
- 2020_10_15_131806_add_soft_deletes_to_likes_table.php
- DatabaseSeeder.php
- .gitignore
- app.css
- app.js
- .htaccess
- favicon.ico
- index.php
- mix-manifest.json
- robots.txt
- web.config
- app.css
- app.js
- bootstrap.js
- auth.php
- pagination.php
- passwords.php
- validation.php
- login.blade.php
- register.blade.php
- post.blade.php
- post_liked.blade.php
- app.blade.php
- index.blade.php
- show.blade.php
- index.blade.php
- dashboard.blade.php
- home.blade.php
- api.php
- channels.php
- console.php
- web.php
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- ExampleTest.php
- ExampleTest.php
- CreatesApplication.php
- TestCase.php
- .editorconfig
- .env.example
- .gitattributes
- .gitignore
- .styleci.yml
- artisan
- composer.json
- package.json
- phpunit.xml
- posty.zip
- README.md
- server.php
- webpack.mix.js
# Installation Guide
1. Get the code
git clone https://github.com/codecourse/posty-traversy-media
Downloads the entire project code from GitHub to your computer.
cd posty-traversy-media
Moves into the project folder you just downloaded.
2. Node.js
Easy RecommendedPrerequisites
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
3. PHP (Composer)
EasyPrerequisites
composer install
Installs the PHP libraries listed in composer.json.
Run it with a built-in server like php -S localhost:8000, then open http://localhost:8000 in your browser.
// repository documentation
Was this content helpful?
(0 ratings)
