XetaIO / Xetaravel by Xety

A light version of Xeta's website using Laravel.
119
6
3
Package Data
Maintainer Username: Xety
Maintainer Contact: zoro.fmt@gmail.com (Xety)
Package Create Date: 2016-12-10
Package Last Update: 2023-07-24
Home Page: https://xetaravel.com
Language: PHP
License: MIT
Last Refreshed: 2024-04-29 15:06:49
Package Statistics
Total Downloads: 119
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 6
Total Watchers: 3
Total Forks: 0
Total Open Issues: 2

|Travis|Coverage|Scrutinizer|Stable Version|Downloads|Laravel|License| |:------:|:-------:|:------:|:-------:|:------:|:-------:|:-------:| |Build Status|Coverage Status|Scrutinizer|Latest Stable Version|Total Downloads|Laravel 5.6|License|

This is a light version of the Xeta website made with Laravel.Actually, I have developed this blog to try Laravel, and I have decided to release it to help people starting with Laravel, so there is probably some custom configurations/functions that only fit my needs.

Demo

Note : All installed accounts won't work on the demo site, you will need to create a new one. (Sadly, we can't trust internet people :frowning_face:) xetaravel.xeta.io

Administration Preview

Admin

Installation

Requirements

|PHP|PHP Extension|DBMS|NodeJS|npm|Others (optional) |---|---|---|---|---|---| |PHP|OpenSSLPDOMbstringTokenizerXMLCtypeJSONGDCURL|MySQL|NodeJS|npm|AnalyticsRedisRedis

Install

While Redis is optional, it is recommended to use Redis with this application.

composer create-project xetaio/xetaravel <application_name>

Then you will need to migrate and seed your application:

php artisan migrate
php artisan db:seed

Finally, you need to install and build the JS, CSS etc :

php artisan vendor:publish --provider="Xetaio\Editor\EditorServiceProvider"
npm run install
npm run production

Note : If you are familiar with VMs, I will publish a tutorial to set up a VM with all tools included in it with ServerPilot soon.

Pre-installed Accounts

  • Admin
    • User : admin@xeta.io
    • Password : admin
  • Editor
    • User : editor@xeta.io
    • Password : editor
  • Member
    • User : member@xeta.io
    • Password : member
  • Banished
    • User : banished@xeta.io
    • Password : banished
    • Note : You will need to delete the cookie to logout due to the restriction of the ban system.

Contribute

If you want to contribute, please follow this guide.