Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamgoose/pastes
Laravel Paste Buckdet
https://github.com/adamgoose/pastes
Last synced: about 24 hours ago
JSON representation
Laravel Paste Buckdet
- Host: GitHub
- URL: https://github.com/adamgoose/pastes
- Owner: adamgoose
- Created: 2013-12-11T01:59:47.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-23T16:40:39.000Z (almost 11 years ago)
- Last Synced: 2023-08-03T00:56:24.309Z (over 1 year ago)
- Language: JavaScript
- Size: 241 KB
- Stars: 29
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
## Laravel Pastebin
[Laravel Pastebin](http://paste.laravel.com/).
## Setting up a local development environment
### Create sqlite database
* `touch app/database/local.sqlite`
### Create local database config
* `mkdir app/config/local`
* `cp app/config/database.php app/config/local/database.php`
* Edit sql database line to be `'database' => __DIR__.'/../../database/local.sqlite',`### Migrate
* `php artisan --env=local migrate`