[GH-4086] Doc: Personal server setup guide out of date (#4114)
* Updated readme to reflect the current local setup of server * .gitignore now ignores .env files * Update README.md Co-authored-by: Michelle Krejci <mickr592@student.liu.se> Co-authored-by: Justine Geffen <justinegeffen@users.noreply.github.com>
This commit is contained in:
parent
ffacc17e35
commit
ae384e7e5b
2 changed files with 11 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -38,6 +38,9 @@ coverage
|
|||
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
|
||||
# Dependency directory
|
||||
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
|
||||
node_modules
|
||||
|
|
|
@ -50,6 +50,14 @@ Contribute code, bug reports, and ideas to the future of the Focalboard project.
|
|||
|
||||
Our [developer guide](https://developers.mattermost.com/contribute/focalboard/personal-server-setup-guide) has detailed instructions on how to set up your development environment for the **Personal Server**. It also provides more information about contributing to our open source community.
|
||||
|
||||
Clone [mattermost-server](https://github.com/mattermost/mattermost-server) into sibling directory.
|
||||
|
||||
Create an `.env` file in the focalboard directory that contains:
|
||||
|
||||
```
|
||||
EXCLUDE_ENTERPRISE="1"
|
||||
```
|
||||
|
||||
To build the server:
|
||||
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue