featmap

The simple user story mapping tool

Github星跟蹤圖

Featmap, the simple user story mapping tool

Featmap is a simple user story mapping tool for product managers to build, plan and communicate product backlogs. It is built using React, Typescript and Go. Try it out at www.featmap.com.

Featmap screenshot

How to run locally

Database requirements

Featmap runs on top of PostgreSQL, so make sure you have it running on your system. At this step, make sure to setup the credentials and database that Featmap will use.

Downloading

Download the Featmap binary for your respective platform and save it somewhere on your system.

Configuration

In the directory where you placed the binary, create a file called conf.json.

Here's a sample conf.json

{  
  "appSiteURL": "http://localhost/",
  "dbConnectionString": "postgresql://featmap:featmap@localhost:5432/featmap?sslmode=disable",
  "jwtSecret": "ChangeMeForProduction",
  "port": "80",
  "emailFrom" : "contact@example.com",
  "smtpServer" : "smtp.example.com",
  "smtpPort": "587",
  "smtpUser" : "postmaster@mail.example.com",
  "smtpPass": "some_smtp_password",
  "environment": "development"  
}

Setting, Description
---, ---
appSiteURL, The url to where you will be hosting the app.
dbConnectionString, The connection string to the PostgreSQL database that Featmap should connect to.
jwtSecret, This setting is used to secure the cookies produced by Featmap. Generate a random string and keep it safe!
port, The port that Featmap should run on.
emailFrom, The email adress that should be used as sender when sending invitation and password reset mails.
smtpServer, SMTP server for sending emails.
smtpPort, Optional Will default to port 587 if not specified.
smtpUser, SMTP server username.
smtpPass, SMTP server password.
environment, Optional If set to development, the backend will not serve secure cookies.

Running

Execute the binary.

./featmap-1.0.0-linux-amd64
Serving on port 80

Open a browser to http://localhost and you are ready to go! If Featmap is not running on port 80, use http://localhost:port.

Building

Requirements

The following must be installed on your system in order to build

Instructions

Start by cloning the repository.

git clone https://github.com/amborle/featmap.git

Navigate to the repository.

cd featmap

Now let's build it (requires Bash).

./build/complete_build.sh

Binaries for Linux, Win and Mac are now available in the bin folder.

cd bin
ls
featmap-1.0.3-darwin-amd64  featmap-1.0.3-linux-amd64  featmap-1.0.3-windows-amd64.exe

Running with docker-compose

Clone the repository

git clone https://github.com/amborle/featmap.git

Navigate to the repository.

cd featmap

Now let's build it (requires Bash).

docker-compose build

Create a .env file, and edit any defaults

cp config/env.sample .env

Create a configuration file by copying config/conf.sample.json, and make any appropriate changes from the env file for the database connection string

cp config/conf.sample.json config/conf.json

Startup the services, the app should now be available on the port you defined in your .env file. (Default: 8080)

docker-compose up -d

主要指標

概覽
名稱與所有者amborle/featmap
主編程語言TypeScript
編程語言Go (語言數: 6)
平台
許可證Other
所有者活动
創建於2019-03-12 14:09:10
推送於2023-12-04 12:19:29
最后一次提交2023-12-04 13:19:29
發布數7
最新版本名稱v2.1.0 (發布於 )
第一版名稱v1.0.4 (發布於 )
用户参与
星數529
關注者數19
派生數92
提交數221
已啟用問題?
問題數45
打開的問題數19
拉請求數5
打開的拉請求數17
關閉的拉請求數3
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?