An open API service indexing awesome lists of open source software.

https://github.com/jk-oster/padlet23-backend


https://github.com/jk-oster/padlet23-backend

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

Laravel Logo


Build Status
Total Downloads
Latest Stable Version
License

## 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/api

Open 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-autoload

php 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 Admin

php 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
```