1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-24 13:43:12 +02:00

Product name

This commit is contained in:
Chen-I Lim 2021-01-26 09:49:49 -08:00
parent 61be2d219b
commit 16dabedcff
15 changed files with 34 additions and 34 deletions

View File

@ -1,5 +1,5 @@
BASE_URL?=http://www.matterdeck.com
BASE_URL?=http://www.focalboard.com
.PHONY: dist
dist:

View File

@ -1,6 +1,6 @@
# Matterdeck website
# Focalboard website
Website for Matterdeck, built using [Hugo](https://gohugo.io/).
Website for Focalboard, built using [Hugo](https://gohugo.io/).
## How to build

View File

@ -3,7 +3,7 @@ baseURL = "https://tasks.octo.mattermost.com/"
canonifyURLs = true
#relativeURLs = true
title = "Matterdeck"
title = "Focalboard"
languageCode = "en-us"
publishDir = "../docs"
pygmentsCodeFences = true
@ -48,7 +48,7 @@ pygmentsStyle = "manni"
# Navigation
[params.navigation]
brand = "Matterdeck"
brand = "Focalboard"
home = "Home"
# You can add custom links before or after the default links
@ -92,7 +92,7 @@ pygmentsStyle = "manni"
# Hero section
[params.hero]
title = "Get Matterdeck"
title = "Get Focalboard"
subtitle = ''
# Intro section
@ -100,7 +100,7 @@ pygmentsStyle = "manni"
[params.intro]
[[params.intro.item]]
title = "Download"
description = "Download Matterdeck here."
description = "Download Focalboard here."
url = "download/personal-edition"
button = "Download Now"
icon = "/img/download-icon.svg"
@ -108,7 +108,7 @@ pygmentsStyle = "manni"
[[params.intro.item]]
title = "Read Guide"
description = "Read the User's Guide to ge the most out of Matterdeck."
description = "Read the User's Guide to ge the most out of Focalboard."
url = "guide/user"
button = "User's Guide"
icon = "/img/use-icon.svg"
@ -116,7 +116,7 @@ pygmentsStyle = "manni"
[[params.intro.item]]
title = "Contribute"
description = "Help build the future of productivity and submit code directly to the Matterdeck open-source project."
description = "Help build the future of productivity and submit code directly to the Focalboard open-source project."
url = "contribute/getting-started"
button = "Start Contributing"
icon = "/img/contribute-icon.svg"

View File

@ -5,7 +5,7 @@ section: "contribute"
weight: 1
---
Welcome to the Matterdeck project!
Welcome to the Focalboard project!
We're very glad you want to check it out and perhaps contribute code our repository in GitHub.

View File

@ -7,7 +7,7 @@ subsection: Getting Started
Thanks for your interest in contributing code!
<!-- Come join our [Contributors community channel](https://community.mattermost.com/core/channels/tickets) on the community server, where you can discuss questions with community members and the Matterdeck core team. -->
<!-- Come join our [Contributors community channel](https://community.mattermost.com/core/channels/tickets) on the community server, where you can discuss questions with community members and the Focalboard core team. -->
<!-- To help with translations, [see the localization process](https://docs.mattermost.com/developer/localization.html). -->

View File

@ -5,12 +5,12 @@ weight: 4
subsection: Getting Started
---
A core committer is a maintainer on the Matterdeck project who has merge access to the repositories. They are responsible for reviewing pull requests, cultivating the developer community, and guiding the technical vision of Matterdeck. If you have a question or need some help, these are the people to ask.
A core committer is a maintainer on the Focalboard project who has merge access to the repositories. They are responsible for reviewing pull requests, cultivating the developer community, and guiding the technical vision of Focalboard. If you have a question or need some help, these are the people to ask.
Core Committers
---------------
Below is the list of core committers working on Matterdeck:
Below is the list of core committers working on Focalboard:
- **<a name="chen.lim">Chen Lim</a>**
- @chen-i.lim on [community.mattermost.com](https://community.mattermost.com/core/messages/@chen-i.lim) and [@chenilim](https://github.com/chenilim) on GitHub

View File

@ -5,6 +5,6 @@ section: "download"
weight: 1
---
If you are new to Matterdeck, [Personal Desktop](desktop) is the fastest way to try it out.
If you are new to Focalboard, [Personal Desktop](desktop) is the fastest way to try it out.
You can also set up [Personal Server](ubuntu) on Ubuntu to use it with your team, and import boards from Personal Desktop.

View File

@ -5,7 +5,7 @@ subsection: Personal Edition
weight: 2
---
Matterdeck Personal Server allows your team to work together on shared project boards.
Focalboard Personal Server allows your team to work together on shared project boards.
Follow these steps it up on an Ubuntu server.
@ -15,7 +15,7 @@ Popular hosted options include:
* [Digital Ocean](https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-18-04)
* [Amazon EC2](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EC2_GetStarted.html)
## Install Matterdeck
## Install Focalboard
[Download the Ubuntu archive package here](/download), then unpack it to /opt/octo:
@ -26,7 +26,7 @@ sudo mv octo /opt
## Install NGINX
By default, the Matterdeck server runs on port 8000 (specified in config.json). We recommend running NGINX as a web proxy to forward http and websocket requests from port 80 to it. To install NGINX, run:
By default, the Focalboard server runs on port 8000 (specified in config.json). We recommend running NGINX as a web proxy to forward http and websocket requests from port 80 to it. To install NGINX, run:
```
sudo apt update
@ -103,7 +103,7 @@ For a production server, it's important to set up TLS to encrypt web traffic. Wi
## Install Postgresql (Recommended)
Matterdeck stores data in a SQLite database by default, but we recommend running against Postgres in production (we've tested against Postgres 10.15). To install, run:
Focalboard stores data in a SQLite database by default, but we recommend running against Postgres in production (we've tested against Postgres 10.15). To install, run:
```
sudo apt install postgresql postgresql-contrib
@ -127,7 +127,7 @@ Exit the postgres user session:
exit
```
Edit the Matterdeck config.json:
Edit the Focalboard config.json:
```
nano /opt/octo/config.json
@ -138,7 +138,7 @@ Change the dbconfig setting to use the postgres database you created:
"dbconfig": "postgres://tasksuser:tasksuser-password@localhost/octo?sslmode=disable&connect_timeout=10",
```
## Configure Matterdeck to run as a service
## Configure Focalboard to run as a service
This will keep the server running across reboots. First, create a new service config file:
@ -149,7 +149,7 @@ sudo nano /lib/systemd/system/octo.service
Paste in the following:
```
[Unit]
Description=Matterdeck server
Description=Focalboard server
[Service]
Type=simple
@ -171,7 +171,7 @@ sudo systemctl enable octo.service
## Test the server
At this point, the Matterdeck server should be running.
At this point, the Focalboard server should be running.
Test that it's running locally with:
```

View File

@ -11,4 +11,4 @@ After installing the server, open a browser to the domain you used (or `http://l
The first user registration will always be permitted, but **subsequent registrations will require an invite link which includes a code**. You can invite additional users by clicking on your username in the top left, then selecting "Invite users".
You are now ready to use Matterdeck. Please refer to the [user's guide](../user/) for details.
You are now ready to use Focalboard. Please refer to the [user's guide](../user/) for details.

View File

@ -7,7 +7,7 @@ weight: 2
## Adding new Boards
1. Click "+ Add Board" at the lower left of the sidebar to add a new board to Matterdeck.
1. Click "+ Add Board" at the lower left of the sidebar to add a new board to Focalboard.
2. Pick "Project Tasks" from the list of templates.
3. This shows the first view of the new board, which is a table of all tasks
![image](./all%20tasks.png)

View File

@ -13,7 +13,7 @@
<div class="container">
<div class="row">
<div class="col-md-9 doc-content">
<h3>Matterdeck Developer Blog</h3>
<h3>Focalboard Developer Blog</h3>
{{ range (.Paginate .Data.Pages).Pages.ByDate.Reverse }}
{{ .Render "summary" }}
{{ end }}

View File

@ -8,7 +8,7 @@
</p>
<p>
Matterdeck is an easy-to-use project management system, perfect for organizing your personal todos or running team projects.
Focalboard is an easy-to-use project management system, perfect for organizing your personal todos or running team projects.
</p>
<p>
@ -20,7 +20,7 @@
</p>
<p>
Matterdeck is open source! <a href="contribute/getting-started/">Check out the source code here</a>, and contribute to the future of this project.
Focalboard is open source! <a href="contribute/getting-started/">Check out the source code here</a>, and contribute to the future of this project.
</p>
<div class="homepage-search row">

View File

@ -4,6 +4,6 @@
text { font: lighter 28px sans-serif; fill: #FFFFFF;}
</style>
<g transform="translate(0, 28)">
<text>🎯 Matterdeck</text>
<text>🎯 Focalboard</text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 338 B

After

Width:  |  Height:  |  Size: 338 B

View File

@ -4,6 +4,6 @@
text { font: lighter 28px sans-serif; fill: #222C3B;}
</style>
<g transform="translate(0, 28)">
<text>🎯 Matterdeck</text>
<text>🎯 Focalboard</text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 338 B

After

Width:  |  Height:  |  Size: 338 B

View File

@ -1,6 +1,6 @@
# Page settings
baseurl = "localhost:1313"
title = "Matterdeck"
title = "Focalboard"
languageCode = "en-us"
theme = "hugo-elate-theme"
@ -14,7 +14,7 @@ theme = "hugo-elate-theme"
email = ""
# Navigation
[params.navigation]
brand = "Matterdeck"
brand = "Focalboard"
home = "Home"
# You can add custom links before or after the default links
@ -34,7 +34,7 @@ theme = "hugo-elate-theme"
# Hero section
[params.hero]
title = "Get Matterdeck"
title = "Get Focalboard"
subtitle = ''
# Intro section
@ -43,7 +43,7 @@ theme = "hugo-elate-theme"
[[params.intro.item]]
title = "Contribute"
description = "Join the hunrdeds of contributors and submit code directly to the Matterdeck open-source project."
description = "Join the hunrdeds of contributors and submit code directly to the Focalboard open-source project."
url = "/contribute/"
button = "Start Contributing"
icon = "icon-bulb"
@ -59,7 +59,7 @@ theme = "hugo-elate-theme"
[[params.intro.item]]
title = "Extend"
description = "Extend Matterdeck to fit your purposes."
description = "Extend Focalboard to fit your purposes."
url = "#"
button = "Start Extending"
icon = "icon-rocket"