All Projects → yincart2 → Galaxy

yincart2 / Galaxy

Licence: other
The whole galaxy system, you can customize it base on your requirements.

Projects that are alternatives of or similar to Galaxy

Opensourcewebsite Org
OpenSourceWebsite (OSW) - online community managed by users using electronic voting and modifying source code
Stars: ✭ 834 (+262.61%)
Mutual labels:  yii2, open-source
Yii2 fecshop
yii2 ( PHP ) fecmall(fecshop) core code used for ecommerce shop 多语言多货币多入口的开源电商 B2C 商城,支持移动端vue, app, html5,微信小程序微店,微信小程序商城等
Stars: ✭ 4,864 (+2014.78%)
Mutual labels:  b2c, yii2
Iisns
sns 开放社区
Stars: ✭ 217 (-5.65%)
Mutual labels:  yii2
Allsky
A Raspberry Pi operated Wireless Allsky Camera
Stars: ✭ 225 (-2.17%)
Mutual labels:  open-source
Ui5 Webcomponents React
A wrapper implementation for React of the UI5 Web Components that are compliant with the SAP Fiori User Experience
Stars: ✭ 220 (-4.35%)
Mutual labels:  open-source
Go
The most flexible Gutenberg-first WordPress theme built for go-getters everywhere.
Stars: ✭ 218 (-5.22%)
Mutual labels:  open-source
Yii2 Translate Manager
Translation Manager
Stars: ✭ 221 (-3.91%)
Mutual labels:  yii2
Werdlists
⌨️ Wordlists, Dictionaries and Other Data Sets for Writing Software Security Test Cases
Stars: ✭ 216 (-6.09%)
Mutual labels:  open-source
Onde Codar Em Salvador
Oportunidades para Pessoas Desenvolvedoras
Stars: ✭ 231 (+0.43%)
Mutual labels:  open-source
Ultracopier
Ultracopier acts as a replacement for files copy dialogs. Features: play/pause, speed limitation, on-error resume, error/collision management ...
Stars: ✭ 220 (-4.35%)
Mutual labels:  open-source
Notadd
A microservice development architecture based on nest.js. —— 基于 Nest.js 的微服务开发架构。
Stars: ✭ 2,556 (+1011.3%)
Mutual labels:  mall
Yii2 Webshell
Web shell allows to run yii console commands using a browser
Stars: ✭ 220 (-4.35%)
Mutual labels:  yii2
Ksql Udf Deep Learning Mqtt Iot
Deep Learning UDF for KSQL for Streaming Anomaly Detection of MQTT IoT Sensor Data
Stars: ✭ 219 (-4.78%)
Mutual labels:  open-source
Tutorial
Tutorial covering Open Source tools for Source Separation.
Stars: ✭ 223 (-3.04%)
Mutual labels:  open-source
Ios
Unofficial app for Swift Evolution
Stars: ✭ 217 (-5.65%)
Mutual labels:  open-source
Server
☁️ Nextcloud server, a safe home for all your data
Stars: ✭ 17,723 (+7605.65%)
Mutual labels:  open-source
Collection
Collection Data for Cooper Hewitt, Smithsonian Design Museum
Stars: ✭ 214 (-6.96%)
Mutual labels:  open-source
Buildapks
Really quickly build APKs on handheld device (smartphone or tablet) in Amazon, Android, Chromebook and Windows📲 See https://buildapks.github.io/docsBuildAPKs/setup to start building APKs.
Stars: ✭ 218 (-5.22%)
Mutual labels:  open-source
Deepehr
Chronic Disease Prediction Using Medical Notes
Stars: ✭ 220 (-4.35%)
Mutual labels:  open-source
Aos Avp
NOVA opeN sOurce Video plAyer: main repository to build them all
Stars: ✭ 229 (-0.43%)
Mutual labels:  open-source

Yincart2 Galaxy System

终极电商系统解决方案:

基础版本提供多商户平台商城(B2B2C),可用于垂直电商平台或者综合电商平台。若要作为B2C商城使用,关闭商家后台即可

根据自己需要,可以扩展为分销、C2C、移动电商、微信小程序、社区团购等电商解决方案

目录结构说明

common
    config/              contains shared configurations
    mail/                contains view files for e-mails
console
    config/              contains console configurations
    controllers/         contains console controllers (commands)
    migrations/          contains database migrations
    models/              contains console-specific model classes
    runtime/             contains files generated during runtime
matter                   电商引擎核心基础
    base/                基础类
    behaviors/           行为类
    helpers/             助手类
modules                  公用模块
    account              账户模块
    auth                 权限模块
    blog                 博客文章模块
    cart                 购物车模块
    catalog              商品模块
    marketing            市场营销模块
    member               会员模块
    order                订单模块
    payment              支付模块
    refund               退货模块
    shipment             物流模块
    store                商店模块
    system               系统模块
star-center              平台后台      
star-cms                 内容管理平台:可用于公司官方网站
star-mall                商城前台:如天猫、京东
star-merchant            商家后台   
star-store               商店前台  
star-upload              上传的文件图片等(新安装需要自己创建此目录)
themes                   主题皮肤          
vendor/                  contains dependent 3rd-party packages
environments/            contains environment-based overrides
tests                    contains various tests for the advanced application
    codeception/         contains tests developed with Codeception PHP Testing Framework

虚拟域名配置说明

命名规则为xxx.star对应star-xxx,遵循“见名知意”的原则

本地测试hosts:

127.0.0.1 center.star
127.0.0.1 cms.star
127.0.0.1 mall.star
127.0.0.1 merchant.star
127.0.0.1 store.star
127.0.0.1 upload.star

apache httpd-vhosts.conf:

<VirtualHost *:80>
  ServerName center.star
  ServerAlias center.star
  DocumentRoot "E:\wamp64\www\galaxy\star-center\web"
  <Directory "E:\wamp64\www\galaxy\star-center\web">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>
<VirtualHost *:80>
  ServerName cms.star
  ServerAlias cms.star
  DocumentRoot "E:\wamp64\www\galaxy\star-cms\web"
  <Directory "E:\wamp64\www\galaxy\star-cms\web">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>
<VirtualHost *:80>
  ServerName store.star
  ServerAlias store.star
  DocumentRoot "E:\wamp64\www\galaxy\star-store\web"
  <Directory "E:\wamp64\www\galaxy\star-store\web">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>
<VirtualHost *:80>
  ServerName mall.star
  ServerAlias mall.star
  DocumentRoot "E:\wamp64\www\galaxy\star-mall\web"
  <Directory "E:\wamp64\www\galaxy\star-mall\web">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>
<VirtualHost *:80>
  ServerName merchant.star
  ServerAlias merchant.star
  DocumentRoot "E:\wamp64\www\galaxy\star-merchant\web"
  <Directory "E:\wamp64\www\galaxy\star-merchant\web">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>
<VirtualHost *:80>
  ServerName upload.star
  ServerAlias upload.star
  DocumentRoot "E:\wamp64\www\galaxy\star-upload"
  <Directory "E:\wamp64\www\galaxy\star-upload">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>

数据库

数据库位于console/data/galaxy_latest.sql

Migration

yii migrate/up system_v0_1_0 [email protected]/system/migrations

安装流程

  1. composer update(目前暂停使用compose更新,可直接使用根目录的vendor.zip解压到当前目录即可)

  2. php init (本地选择 0 - 开发环境,线上选择 1 - 生产环境)

  3. 修改数据库连接 账号

  4. yii migrate/up system_v0_1_0 [email protected]/system/migrations

  5. 将 console/data/galaxy_latest.sql 导入数据库

账户

平台后台:admin 123456

REQUIREMENTS

The minimum requirement by this application template that your Web server supports PHP 5.4.0.

Install via Composer

If you do not have Composer, you may install it by following the instructions at getcomposer.org.

You can then install the application using the following command:

php composer.phar global require "fxp/composer-asset-plugin:1.0.0"
php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced advanced
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].