User Tools

Site Tools


mattermost-development-setup

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Last revisionBoth sides next revision
mattermost-development-setup [2018/07/06 22:08] – created adminmattermost-development-setup [2018/07/06 22:17] admin
Line 3: Line 3:
 Follow this guide: Follow this guide:
 https://developers.mattermost.com/contribute/server/developer-setup/ https://developers.mattermost.com/contribute/server/developer-setup/
 +
 +Clone Webapp:
 +<code bash>
 +cd ~/go/src/github.com/mattermost/mattermost-webapp
 +git clone https://github.com/mattermost/mattermost-webapp
 +</code>
  
 Make sure you have created ''mmuser'' and granted access to the database ''mattermost_test'' on your lokal mysql server: Make sure you have created ''mmuser'' and granted access to the database ''mattermost_test'' on your lokal mysql server:
Line 10: Line 16:
 CREATE USER 'mmuser'@'localhost' IDENTIFIED BY 'mostest'; CREATE USER 'mmuser'@'localhost' IDENTIFIED BY 'mostest';
 GRANT ALL PRIVILEGES ON *.* TO 'mmuser'@'localhost'; GRANT ALL PRIVILEGES ON *.* TO 'mmuser'@'localhost';
 +</code>
 +
 +Run Mattermost:
 +<code bash>
 +make run
 +</code>
 +
 +Stop Mattermost Server:
 +<code bash>
 +make stop-server
 </code> </code>
  
mattermost-development-setup.txt · Last modified: 2018/07/06 23:13 by admin