Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eddir/rivex-web
Веб-приложения Rivex на Laravel
https://github.com/eddir/rivex-web
Last synced: 26 days ago
JSON representation
Веб-приложения Rivex на Laravel
- Host: GitHub
- URL: https://github.com/eddir/rivex-web
- Owner: eddir
- Created: 2019-01-15T05:29:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-24T20:27:34.000Z (almost 6 years ago)
- Last Synced: 2024-11-09T11:31:57.282Z (3 months ago)
- Language: HTML
- Homepage:
- Size: 18.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Вебприложения Rivex ##
**Вебприложения Rivex** содержат все сайты проекта Rivex.
### Установка ###
Минимальная локальная установка под OS Ubuntu 16.04 и PHP 7.2
* `git clone [email protected]:eddir/rivex-web.git rivex-web`
* `cd projectname`
* `php composer.phar install`
* `php composer.phar update`
* `cp .env.example .env`
* `php artisan key:generate`
* Откройте .env и укажите следующие значения:
* APP_URL: `http://localhost:8000` или другой, если ипользуется apache/nginx
* DB_DATABASE
* DB_USERNAME
* DB_PASSWORD
* `php artisan serve --host=localhost --port=8000` или свой домен вместо localhost. При наличии apache/nginx эту команду вводить не нужно. Используется для запуска тестового веб-сервера.
* `php artisan migrate --seed` вводиться в отдельном окне терминала.### Include ###
* [Styleshout](https://www.styleshout.com/) for front template
* [CKEditor](http://ckeditor.com) the great editor
* [Elfinder](https://github.com/Studio-42/elFinder) the nice file manager
* [Sweat Alert](http://t4t5.github.io/sweetalert/) for the cool alerts
* [AdminLTE](https://adminlte.io/themes/AdminLTE/index2.html) the great admin template
* [Gravatar](https://github.com/creativeorange/gravatar) the Gravatar package
* [Intervention Image](http://image.intervention.io/) for image manipulation
* [Email confirmation](https://github.com/bestmomo/laravel-email-confirmation) the package for email confirmation
* [Artisan language](https://github.com/bestmomo/laravel-artisan-language) the package for language strings management
* [Laravel debugbar](https://github.com/barryvdh/laravel-debugbar)
* [Etrepat baum](https://github.com/etrepat/baum) for comments management### Tricks ###
To use application the database is seeding with users :
* Administrator : email = [email protected], password = admin
* Redactor : email = [email protected], password = redac
* User : email = [email protected], password = walker
* User : email = [email protected], password = slacker### Tests ###
When you want to launch the tests refresh and populate the database :
`php artisan migrate:fresh --seed`
Then:
`./vendor/phpunit/phpunit/phpunit && php artisan dusk`