【Cryptomania Exchange Pro v2.0.4】加密货币交易系统PHP源码 全开源可二开

Cryptomania Exchange Pro是一款强大的加密货币交易系统PHP源码,包含推广推荐分销系统,集成了BTC节点,优化了代码,添加报表功能,集成了公共API,验证码系统…等等。

您为什么要购买CRYPTOMANIA?

您的交易应用程序在交易过程中是否保护取消订单?
您的交易应用程序是否通过使用软件访问相同的网址来保护两次相同的提款?
您的交易应用程序是否具有所有会计交易,以便更好地理解?
您的交易应用程序是否提供有关任何内容的完整报告?
您的交易应用程序是否允许您根据需要创建或控制任何硬币?
您的交易应用程序可让您创建任何硬币对进行兑换吗?
您的交易应用程序提供专家交易视图吗?

我们做到了,这就是我们节省您数百万美元的方式。

如何安装Cryptomania

前提条件

Linux Server
Minimum RAM 2GB
Minimum Space 40GB
PHP 7.2+
Database (Preferred MYSQL 5.7+)
Apache 2.4/Nginx Server
Process Control System (Preferred Supervisord)
PHP Dependency Manager (Preferred Composer)
Redis Server For Queue Management
Node Package Manager (Preferred NPM)

安装过程

Copy the project to the server.
Unzip project to preferred location. ex: /var/www/html/
Make a copy of .env.example and rename it to .env
Make a database with collation named utf8mb4_unicode_ci
Config .env
    APP_NAME="Cryptomania Crypto" 
    APP_ENV=production
    APP_KEY=
    APP_DEBUG=false
    APP_URL=http://dev.cryptomania.com

    LOG_CHANNEL=stack

    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=
    DB_USERNAME=
    DB_PASSWORD=

    BROADCAST_DRIVER=redis
    CACHE_DRIVER=file
    SESSION_DRIVER=file
    SESSION_LIFETIME=120
    QUEUE_DRIVER=redis

    REDIS_HOST=127.0.0.1
    REDIS_PASSWORD=null
    REDIS_PORT=6379

    MAIL_DRIVER=smtp
    MAIL_HOST=
    MAIL_PORT=
    MAIL_USERNAME=
    MAIL_PASSWORD=
    MAIL_ENCRYPTION=
    MAIL_FROM_ADDRESS=
    MAIL_FROM_NAME=

    ADMIN_SETTING_STORAGE=database
    ROUTE_STORAGE=cache

Give write permission to bootstrap/cache and storage directory
Run following command
   php atrisan key:generate
   composer install
   php artisan migrate --seed
   php artisan storage:link

Setup Supervisor

Create 2 new supervisord config with the following configuration

1. Horizon Supervisor Config
```
[program:cryptomania]
process_name=%(program_name)s
command=php /var/www/html/cryptomania/artisan horizon
autostart=true
autorestart=true
user=rana
redirect_stderr=true
stdout_logfile=/var/log/cryptomania-horizon.log
```
Change `program` `command path` `user` `logfile path`

2. Echo Server Config
[program:cryptomania-echo-server]
process_name=%(program_name)s
command=laravel-echo-server start --dir=/var/www/html/cryptomania
autostart=true
autorestart=true
user=rana
redirect_stderr=true
stdout_logfile=/var/log/cryptomania-echo-server.log
Change program command path user logfile path

After these configurations run following command
    servervisorctl reread
    servervisorctl update
    servervisorctl start all

    php artisan clear:all
    php artisan horizon terminate
原文链接:https://vuesite.cn/9272.html,转载请注明出处。
0
显示验证码
没有账号?注册  忘记密码?