https://github.com/jk-oster/padlet23-backend
https://github.com/jk-oster/padlet23-backend
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jk-oster/padlet23-backend
- Owner: jk-oster
- License: mit
- Created: 2023-05-09T16:08:36.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-24T16:10:29.000Z (about 2 years ago)
- Last Synced: 2024-12-24T15:19:02.506Z (5 months ago)
- Language: PHP
- Size: 120 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Padlet23
A simple padlet that allows users to create collections.
Backend: https://padlet.s2010456022.student.kwmhgb.at
Backend: http://padlet.s2010456022.student.kwmhgb.at
API: http://padlet.s2010456022.student.kwmhgb.at/apiOpen ssh connection to Hetzner:
```bash
ssh [email protected] -p222
``````bash
cd public_html/padlet23/padletServer
```## Installation
Clone the repository
```bash
git clone
```The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
## Laravel Commands
```bash
php ../composer.phar dump-autoloadphp artisan make:controller BookController --api
php artisan make:migration create_books_table --table=books
php artisan make:factory BookFactory
php artisan make:seeder BooksTableSeeder
php artisan make:model Book
php artisan make:resource BookResource
php artisan make:middleware Adminphp artisan migrate:refresh --seed
php artisan migrate:rollback
php artisan db:seed --class=BooksTableSeeder
php artisan tinker
php artisan serve
php artisan route:list
php artisan cache:clear```
```bash
php artisan vendor:publish --provider="PHPOpenSourceSaver\JWTAuth\Providers\LaravelServiceProvider"php artisan jwt:secret
```