Chimera Fox Mark2 Core - release mirror https://mxfox.ru
Go to file
Pavel Dmitriev a12a40c8b1 v0.9.0 2022-04-28 20:12:33 +03:00
api Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
cli Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
core v0.9.0 2022-04-28 20:12:33 +03:00
docker-build Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
fox-cron.d Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
fox-start.d Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
modules Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
static v0.9.0 2022-04-28 20:12:33 +03:00
.dockerignore Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
.gitignore Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
.htaccess Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
Autoloader.php Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
CHANGELOG_EN.md v0.9.0 2022-04-28 20:12:33 +03:00
CHANGELOG_RU.md v0.9.0 2022-04-28 20:12:33 +03:00
Dockerfile.sample Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
LICENSE Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
README.md v0.9.0 2022-04-28 20:12:33 +03:00
build.sh Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
composer.json Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
error.php Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
favicon.ico Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00
index.php Release sync 2022-04-26 22:17 2022-04-26 22:48:03 +03:00

README.md

Chimera Fox Platform Mark2

Chimera Fox is a universal framework for quickly creating web applications. The back is written in PHP, and provides basic functions. Front on JS. Interaction via REST.

How to run in docker

version: "2"

networks:
  interlink:

services:

fox-web-mk2:
  restart: always
  image: mxfox/chimera-mk2-basic:lastest
  container_name: fox-web-mk2
  volumes:
   - ./fox-log-web/logs:/var/log/apache2
   - ./fox-log-cron/logs:/var/log/fox

  networks:
   - interlink

  environment:
   - "FOX_SQLSERVER=XXXXXX"
   - "FOX_SQLUSER=XXXXX"
   - "FOX_SQLPASSWD=XXXX"
   - "FOX_SQLDB=XXXXX"
   - "FOX_CACHEHOST=memcached"
   - "FOX_TITLE=Mark2"
   - "FOX_SITEPREFIX=https://mark2.fox.local"
   - "FOX_MASTERSECRET=SuperSecretPassword"
   - "FOX_INIT_PASSWORD=AnotherSuperSecretPassword"