The Open Source kanban (built with Meteor).
![]() |
8 ani în urmă | |
---|---|---|
.meteor | 8 ani în urmă | |
.tx | 8 ani în urmă | |
.vscode | 9 ani în urmă | |
client | 8 ani în urmă | |
config | 9 ani în urmă | |
i18n | 8 ani în urmă | |
meta | 8 ani în urmă | |
models | 8 ani în urmă | |
public | 9 ani în urmă | |
server | 8 ani în urmă | |
.editorconfig | 9 ani în urmă | |
.eslintrc.json | 8 ani în urmă | |
.gitignore | 8 ani în urmă | |
.travis.yml | 9 ani în urmă | |
CHANGELOG.md | 8 ani în urmă | |
Contributing.md | 9 ani în urmă | |
Dockerfile | 8 ani în urmă | |
LICENSE | 9 ani în urmă | |
README.md | 8 ani în urmă | |
app.json | 10 ani în urmă | |
docker-compose.yml | 8 ani în urmă | |
package.json | 8 ani în urmă | |
sandstorm-pkgdef.capnp | 8 ani în urmă | |
sandstorm.js | 8 ani în urmă | |
scalingo.json | 9 ani în urmă |
2017-02-03 News: All Wekan fork/Wefork code and pull requests has been merged back to official Wekan. Wefork will not accept new pull requests and issues to Wefork. All development happens on Wekan.
Wefork announcement and merging back
Translate Wekan using newer Wefork translations at Transifex
Not in use yet: Old Wekan translations at Transifex
Wekan is an open-source and collaborative kanban board application.
Whether you’re 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.
Roadmap is handled using Wekan GitHub issues.
Newer Wefork GitHub issues will be be moved to there also.
Wekan supports most features you would expect of it including a real-time user interface, cards comments, checklists, member assignations, customizable labels, closing lists, filtered views, and more.
Since it is a free software, you don’t 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.
Newest features are already at dockerhub images by automatically generated trusted build. Other platforms are not up-to-date yet.
Docker example, running latest Wekan using docker-compose:
sudo docker-compose pull && sudo docker-compose up -d --no-build
sudo docker-compose up -d --build
ARG
variables (not recommended)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
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.
Wekan is released under the very permissive MIT license, and made with Meteor.