Commit 5602ef25 authored by Mark Harding's avatar Mark Harding

(chore): environment fixes

parent 38958c20
No related merge requests found
Pipeline #66848209 passed with stages
in 6 minutes and 19 seconds
......@@ -1372,7 +1372,7 @@ CREATE TABLE minds.sendwyre_accounts (
PRIMARY KEY (user_guid)
);
CREATE TABLE analytics_graphs (
CREATE TABLE minds.analytics_graphs (
key text,
last_synced timestamp,
data text,
......@@ -1380,17 +1380,28 @@ CREATE TABLE analytics_graphs (
);
CREATE TABLE minds.views (
year int,
month tinyint,
day tinyint,
uuid timeuuid,
entity_urn text,
page_token text,
position int,
platform text,
source text,
medium text,
campaign text,
delta int,
PRIMARY KEY (year, month, day, uuid, entity_urn, page_token)
year int,
month tinyint,
day tinyint,
uuid timeuuid,
entity_urn text,
page_token text,
position int,
platform text,
source text,
medium text,
campaign text,
delta int,
PRIMARY KEY (year, month, day, uuid, entity_urn, page_token)
);
CREATE TABLE minds.update_markers (
user_guid varint,
entity_type text,
entity_guid varint,
marker text,
disabled boolean,
read_timestamp timestamp,
updated_timestamp timestamp,
PRIMARY KEY (user_guid, entity_type, entity_guid, marker)
);
\ No newline at end of file
......@@ -10,7 +10,7 @@ echo "Setting up Keys"
echo "Running install"
php /var/www/Minds/engine/cli.php install \
--domain=http://localhost:8080 \
--domain=localhost:8080 \
--username=minds \
--password="Pa\$\$w0rd" \
--email=minds@minds.com \
......
......@@ -8,8 +8,8 @@ listen.backlog = -1
pm = static
pm.max_children = 5
pm.max_requests = 2000
pm.max_children = 10
pm.max_requests = 200
pm.status_path = /status
chdir = /
......@@ -17,7 +17,7 @@ chdir = /
catch_workers_output = yes
slowlog = /dev/stderr
request_slowlog_timeout = 2s
request_slowlog_timeout = 10s
request_terminate_timeout = 120s
......
......@@ -147,7 +147,7 @@ $CONFIG->site_name = '{{site-name}}';
$CONFIG->__site_secret__ = '{{site-secret}}';
// $CONFIG->cdn_url = 'http://{{domain}}/';
$CONFIG->site_url = 'http://{{domain}}/';
$CONFIG->cdn_url = 'http://{{domain}}/en/';
$CONFIG->cdn_url = 'http://{{domain}}/';
$CONFIG->cdn_assets_url = 'http://{{domain}}/en/';
$CONFIG->zmq_server = 'localhost';
$CONFIG->checkout_url = 'http://{{checkout_domain}}/';
......@@ -469,3 +469,10 @@ $CONFIG->set('development_mode', false);
$CONFIG->set('max_video_length', 900);
$CONFIG->set('max_video_length_plus', 1860);
$CONFIG->set('features', [
'es-feeds' => false,
'helpdesk' => true,
'top-feeds' => true,
'dark-mode' => true,
]);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment