mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
This PR allows to run a different Mattermost instance in port :8066 using the `make run-node` target. This instance reuses the frontend files compiled for the main development instance, has its own database and local mode enabled through environment variables, and for the rest of the configuration simply takes whatever properties are set in the `config.json` file. This target is specially useful to run a Shared Channels development environment, compiling first the frontend and then running `make run-server` and `make run-node` side by side, later connecting both and testing Shared Channels features.
2 lines
103 B
SQL
2 lines
103 B
SQL
CREATE DATABASE mattermost_node_test;
|
|
GRANT ALL PRIVILEGES ON DATABASE mattermost_node_test TO mmuser;
|