A simple system for storing files in the cloud like OneDrive or OwnCloud based on the Laravel framework with Backbone.js.
- Copy file
.env.example
as.env
- Configure your
.env
file. (database section) - Run command
php artisan key:generate
in project root directory - Run command
php artisan passport:install
in project root directory - Run
php artisan migrate
command - Configure your web server for
public
directory
...
APP_URL=http://yourcloud.test // Your domain url
...
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=yourcloud // Your database name
DB_USERNAME=root // Your database user
DB_PASSWORD=secret // Your database password