1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-24 08:22:29 +02:00
This commit is contained in:
Chen-I Lim 2021-01-21 11:32:26 -08:00
parent 98858f9d32
commit e4c375747e
14 changed files with 33 additions and 33 deletions

View File

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

View File

@ -1,6 +1,6 @@
# Matternote website
# Matterdeck website
Website for Matternote, built using [Hugo](https://gohugo.io/).
Website for Matterdeck, 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 = "Matternote"
title = "Matterdeck"
languageCode = "en-us"
publishDir = "../docs"
pygmentsCodeFences = true
@ -48,7 +48,7 @@ pygmentsStyle = "manni"
# Navigation
[params.navigation]
brand = "Matternote"
brand = "Matterdeck"
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 Matternote"
title = "Get Matterdeck"
subtitle = ''
# Intro section
@ -100,7 +100,7 @@ pygmentsStyle = "manni"
[params.intro]
[[params.intro.item]]
title = "Download"
description = "Download Matternote here."
description = "Download Matterdeck 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 Matternote."
description = "Read the User's Guide to ge the most out of Matterdeck."
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 Matternote open-source project."
description = "Help build the future of productivity and submit code directly to the Matterdeck 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 Matternote project!
Welcome to the Matterdeck 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 Matternote 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 Matterdeck 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 Matternote 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 Matternote. If you have a question or need some help, these are the people to ask.
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.
Core Committers
---------------
Below is the list of core committers working on Matternote:
Below is the list of core committers working on Matterdeck:
- **<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 Matternote, [Personal Desktop](desktop) is the fastest way to try it out.
If you are new to Matterdeck, [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
---
Matternote Personal Server allows your team to work together on shared project boards.
Matterdeck 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 Matternote
## Install Matterdeck
[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 Matternote 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 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:
```
sudo apt update
@ -99,7 +99,7 @@ server {
## Install Postgresql (Recommended)
Matternote 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:
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:
```
sudo apt install postgresql postgresql-contrib
@ -123,7 +123,7 @@ Exit the postgres user session:
exit
```
Edit the Matternote config.json:
Edit the Matterdeck config.json:
```
nano /opt/octo/config.json
@ -134,7 +134,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 Matternote to run as a service
## Configure Matterdeck to run as a service
This will keep the server running across reboots. First, create a new service config file:
@ -145,7 +145,7 @@ sudo nano /lib/systemd/system/octo.service
Paste in the following:
```
[Unit]
Description=Tasks server
Description=Matterdeck server
[Service]
Type=simple
@ -167,7 +167,7 @@ sudo systemctl enable octo.service
## Test the server
At this point, the Matternote server should be running.
At this point, the Matterdeck server should be running.
Test that it's running locally with:
```

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 Matternote.
1. Click "+ Add Board" at the lower left of the sidebar to add a new board to Matterdeck.
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>Matternote Developer Blog</h3>
<h3>Matterdeck Developer Blog</h3>
{{ range (.Paginate .Data.Pages).Pages.ByDate.Reverse }}
{{ .Render "summary" }}
{{ end }}

View File

@ -8,7 +8,7 @@
</p>
<p>
Matternote is an easy-to-use project management system, perfect for organizing your personal todos or running team projects.
Matterdeck 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>
Matternote is open source! <a href="contribute/getting-started/">Check out the source code here</a>, and contribute to the future of this project.
Matterdeck 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>🎯 Matternote</text>
<text>🎯 Matterdeck</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>🎯 Matternote</text>
<text>🎯 Matterdeck</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 = "Matternote"
title = "Matterdeck"
languageCode = "en-us"
theme = "hugo-elate-theme"
@ -14,7 +14,7 @@ theme = "hugo-elate-theme"
email = ""
# Navigation
[params.navigation]
brand = "Matternote"
brand = "Matterdeck"
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 Matternote"
title = "Get Matterdeck"
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 Matternote open-source project."
description = "Join the hunrdeds of contributors and submit code directly to the Matterdeck 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 Matternote to fit your purposes."
description = "Extend Matterdeck to fit your purposes."
url = "#"
button = "Start Extending"
icon = "icon-rocket"