[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:
Michelle Krejci 2022-11-01 20:13:23 +01:00 committed by GitHub
parent ffacc17e35
commit ae384e7e5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

3
.gitignore vendored
View file

@ -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

View file

@ -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:
```