Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
154
Issues
154
List
Boards
Labels
Service Desk
Milestones
Merge Requests
41
Merge Requests
41
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
5602ef25
Commit
5602ef25
authored
14 minutes ago
by
Mark Harding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(chore): environment fixes
parent
38958c20
master
No related merge requests found
Pipeline
#66848209
passed with stages
in 6 minutes and 19 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
19 deletions
+37
-19
cassandra-provision.cql
Core/Provisioner/Provisioners/cassandra-provision.cql
+25
-14
install.sh
containers/installer/install.sh
+1
-1
php-fpm.dev.conf
containers/php-fpm/php-fpm.dev.conf
+3
-3
settings.example.php
settings.example.php
+8
-1
No files found.
Core/Provisioner/Provisioners/cassandra-provision.cql
View file @
5602ef25
...
...
@@ -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
This diff is collapsed.
Click to expand it.
containers/installer/install.sh
View file @
5602ef25
...
...
@@ -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
\
...
...
This diff is collapsed.
Click to expand it.
containers/php-fpm/php-fpm.dev.conf
View file @
5602ef25
...
...
@@ -8,8 +8,8 @@ listen.backlog = -1
pm
=
static
pm
.
max_children
=
5
pm
.
max_requests
=
200
0
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
=
2
s
request_slowlog_timeout
=
10
s
request_terminate_timeout
=
120
s
...
...
This diff is collapsed.
Click to expand it.
settings.example.php
View file @
5602ef25
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment