About
Screenshots
Installation and Setup
After Install
Support / Improvement / Suggestions
License
A web application supporting multiple user experience (UX) research methods.
See the website for more information.
Use one of the following:
git clone https://github.com/carlsonp/kort.git)npm install @carlsonp/kortEdit app.js and optionally set the adminUser and set your own username.
Edit the adminPassword value in app.js.
Optionally set allowUserRegistration in app.js to allow users to register. Otherwise users can only be created by accounts with 'admin' access.
Optionally setup Google authentication. See the wiki for details.
Continue installation via source or via Docker.
Install Node.js
Install MongoDB (3.0 or higher) or provide a connection to an existing server
by editing the app.js file and setting the mongoURL. Kort uses the Mongoose package. To optionally secure your MongoDB with a username
and password,
create a user for the kort database by doing the following:
Open a Mongo commandline shell:
mongo --port 27017Select the database:
use kort
Create the new user:
db.createUser(
{
user: "kort",
pwd: "123",
roles: [ { role: "readWrite", db: "kort" } ]
}
)
Then edit /etc/mongodb.conf and enable auth=true. Restart the service. Make sure to set
the mongoURL with the appropriate username and password.
Run npm install on the commandline. This will install the dependencies into the node_modules folder.
Run node app.js from the main directory. This will start the NodeJS server
on the default port 3000.
Install Docker
Install docker-compose
Build the containers
docker-compose build
Start the containers (use -d to run in detached mode)
docker-compose upStop the containers (when using detached mode)
docker-compose downData from MongoDB is persisted and mounted as a Docker volume in the ./data/ folder.
You can connect via http://localhost:3000
The adminUser and adminPassword that is set in app.js is the username and password for the account that will be created upon first launch. Use this to login.
Open a Github issue.
Kort is licensed under the GPLv3.