The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://app.transifex.com/wekan/ only.
Find a file
2017-04-02 17:04:17 +03:00
.meteor Added local dependency for flow-router 2017-03-22 22:23:49 -04:00
.tx Update translations. 2017-03-24 22:14:25 +02:00
.vscode Add VSCode editor configuration to the repository 2016-07-20 15:54:59 +02:00
client Add TLS toggle option to smtp configuration 2017-03-30 19:13:57 +02:00
config Fix email settings loading: 2017-04-01 21:46:09 +02:00
i18n Update translations. 2017-04-02 16:43:02 +03:00
meta Tinified pngs 2017-03-28 07:40:33 +02:00
models Fix email settings loading: 2017-04-01 21:46:09 +02:00
packages Updated flow-router commit. Changed url 2017-03-23 00:22:06 -04:00
public optimize png images losslessly using zopflipng 2016-07-18 22:54:03 +02:00
server Fix email settings loading: 2017-04-01 21:46:09 +02:00
.editorconfig Add editorconfig support 2015-10-12 17:41:09 +02:00
.eslintrc.json add to omit list 2017-03-19 15:26:19 -04:00
.gitignore tweaked .gitignore to exclude .build/* 2017-02-04 13:54:47 +02:00
.gitmodules Fix: Double slash problem on card pop-ups. Closes #785 2017-03-24 20:59:29 +02:00
.travis.yml update travis for a docker build 2017-03-28 18:09:57 +01:00
app.env App env variables 2017-03-22 22:29:54 -04:00
app.json v1.11.1-rc1 Wekan prerelease. 2017-02-10 18:02:19 +02:00
CHANGELOG.md v0.18 Wekan release. 2017-04-02 17:04:17 +03:00
Contributing.md Documentation has been moved to Wekan wiki. 2017-02-05 20:23:19 +02:00
docker-compose.yml v0.18 Wekan release. 2017-04-02 17:04:17 +03:00
Dockerfile remove invalid command 2017-03-28 19:08:55 +01:00
LICENSE Update some meta-data 2016-01-02 17:15:19 +01:00
package.json v0.18 Wekan release. 2017-04-02 17:04:17 +03:00
README.md Fix typo. 2017-04-02 15:17:46 +03:00
sandstorm-pkgdef.capnp v0.18 Wekan release. 2017-04-02 17:04:17 +03:00
sandstorm.js hack to avoid 'board not found' problem in Sandstorm 2016-11-22 22:20:39 -05:00
scalingo.json Add Scalingo one-click deploy 2015-12-14 15:20:16 +01:00

Wekan

Wekan Build Status

Wekan chat

2017-02-08 News: All of Wefork is now merged and moved back to official Wekan. Wefork will not accept any new issues and pull requests. All development happens on Wekan.

Wefork announcement and merging back

Wefork FAQ

Translate Wekan at Transifex

Wekan is an open-source and collaborative kanban board application.

Whether youre maintaining a personal todo list, planning your holidays with some friends, or working in a team on your next revolutionary idea, Kanban boards are an unbeatable tool to keep your things organized. They give you a visual overview of the current state of your project, and make you productive by allowing you to focus on the few items that matter the most.

Wekan supports most features you would expect of it including a real-time user interface.

Features

Integrations

Wekan supports many platforms, and plan is to add more.

SSO options like LDAP, passwordless email, SAML, GitHub and Google Auth are already available on Sandstorm, not standalone Wekan. Sandstorm is Enterprise scale highly secure platform with grains, logging, admin settings, server clustering, App Market and it's now fully Open Source. Sandstorm is preferred platform for Wekan, as it would take a lot of work to reimplement everything in standalone Wekan.

You dont have to trust us with your data and can install Wekan on your own computer or server. In fact we encourage you to do that by providing one-click installation on various platforms.

Roadmap

Upcoming Wekan App Development Platform will make possible many use cases. If you don't find your feature or integration in GitHub issues and Features or Integrations page at wiki, please add them.

We are very welcoming to new developers and teams to submit new pull requests to devel branch to make this Wekan App Development Platform possible faster. Please see Developer Documentation to get started. We also welcome sponsors for features. By working directly with Wekan you get the benefit of active maintenance and new features added by growing Wekan developer community.

Roadmap is self-hosted on Wekan

Roadmaps is not currently up-to-date. You can find more up-to-date info from Features and Integrations pages, where is links to Wekan GitHub issues where actual work happens.

Screenshot

Screenshot of Wekan

Content is being copied from old Wekan roadmap to new one in process of merging Wefork back to Wekan.

Since Wekan is a free software, you dont have to trust us with your data and can install Wekan on your own computer or server. In fact we encourage you to do that by providing one-click installation on various platforms.

Supported Platforms

Automatic generated newest builds are available for Docker, and some others that install directly from this repo. Automatic builds will be added later for more platforms.

Wekan database cleanup script

Daily export of Wekan changes as JSON to Logstash and ElasticSearch / Kibana (ELK)

Wekan stats

Enable Admin Panel on Docker and Source installs

2017-03-31: Alternative Docker image while we are fixing official Docker image, fixing may take one or two weeks. We are also trying to setup New Docker image for Wekan team where it's easier for Wekan team to add tags.

Import/Export MongoDB data to/from Docker container

Docker: Docker image, Docs at wiki

Docker example, running latest Wekan using docker-compose:

Running from remote dockerhub images

Recommended:

Development:

  • Clone this wekan repo and run from dockerhub without building:
sudo docker-compose up -d --nobuild

PostgreSQL read-only mirroring using dockerhub images

Wekan <=> MongoDB <=> ToroDB => PostgreSQL read-only mirroring for SQL access with any programming language or Office package that has PostgreSQL support, like newest LibreOffice 3.5.

Running from locally built dockerhub images

sudo docker-compose up -d --build
echo 'NODE_VERSION=v6.6.0' >> .env && \
echo 'METEOR_RELEASE=1.4.2.3' >> .env && \
echo 'NPM_VERSION=4.1.2' >> .env && \
echo 'ARCHITECTURE=linux-x64' >> .env && \
echo 'SRC_PATH=./' >> .env && \
sudo docker-compose up -d --build

Docker example, running latest Wekan using docker run commands alone:

docker run -d --restart=always --name wekan-db mongo:3.2.11

docker run -d --restart=always --name wekan --link "wekan-db:db" -e "MONGO_URL=mongodb://db" -e "ROOT_URL=http://localhost:8080" -p 8080:80 mquandalle/wekan:latest

Docker on SUSE Linux Enterprise Server 12 SP1

Docker environment for Wekan development

Install from source

Install from source on Windows

VirtualBox

Debian Wheezy 64bit

Deploy SignUp Deploy to Scalingo Install on Cloudron Try on Sandstorm

Upcoming Platforms

Autoinstall script based on this issue

Create Sandstorm .spk file from source

Email to work on already working Heroku: Use 3rd party email like SendGrid, update process.env.MAIL_URL , change from email at Accounts.emailTeamplates.from , new file in server folder called smtp.js on code Meteor.startup(function () }); . TODO: Test and find a way to use API keys instead.

Azure: Install from source. Azure endpoint needs to be added. Not tested yet.

OpenShift: Not tested yet.

Google Cloud: Needs info how to enable websockets.

License

Wekan is released under the very permissive MIT license, and made with Meteor.