Join the conversation

Sign in to join this conversation, and others like it, in the communities you care about.

Wekan

Wekan is an open-source kanban board (Trello like) which allows a card-based task and to-do management.

Wekan / General

Developing Wekan for Sandstorm

Developing Wekan for Sandstorm

Wekan / General · June 26, 2019 at 4:39am (Edited 5 years ago)

Hello, I'm new to here and trying to add a new feature to Wekan for Sandstorm.

Is this document still up to date? https://github.com/wekan/wekan-maintainer/wiki/Building-Wekan-for-Sandstorm

I think there is a way to build from source code rather than an image to keep everything updated, or the image is always updated?

I am at the very start point of a Wekan developer, hope I can eventually reach the goal. Thank you!

Load previous messages

June 26, 2019 at 5:08am

I updated URL on that wiki page

    • reply
    • like

    Actually I should check and update it

      • reply
      • like

      June 26, 2019 at 6:10am

      Hi @xet7, I want a filter feature that can reach archived items. Each time I need to write annual work report, I need to open every archived list and find out my items. My ideal is have a feature that I can indicate a period of time and a member (me), then I have all cards shown.

        • reply
        • like

        I see the page updated, but must I use the image? Can I just clone from https://github.com/wekan/wekan, then build from step 2, and eventually run meteor-spk dev? Thank you.

          Edited
          • reply
          • like

          Filter feature is same for Standalone Wekan and Sandstorm Wekan. So it would be enough that you develop it with Standalone Wekan scripts.

            • reply
            • like

            In general, Standalone Wekan and Sandstorm Wekan are the same, but with environment variables like isSandstorm some menus are hidden. There is also some different login/SSO logic in wekan/sandstorm* code files

              • reply
              • like

              Also, currently items from Archive are loaded only if Archive is clicked https://github.com/wekan/wekan/pull/2402

                • reply
                • like

                So maybe you could make some filter for Archive

                  • reply
                  • like

                  Here is blogpost about that Advanced Filter etc https://blog.wekan.team/2018/05/wekan-v1-00-released/index.html

                    • reply
                    • like

                    And here are some merged filter PRs with violet color: https://github.com/wekan/wekan/pulls?q=is%3Apr+filter+is%3Aclosed

                      • reply
                      • like

                      So I would think, that you would add similar filter to Archive sidebar page

                        Edited
                        • reply
                        • like

                        So that when Arhive items are loaded, then use code and filter to filter from archive

                          • reply
                          • like

                          Well, similarly there could be Search for archive

                            • reply
                            • like

                            I clone the code, run rebuild-wekan.sh, then start-wekan.sh, but get a Error: Cannot find module '/home/romulus/wekan/main.js'. I guess I am doing something very wrong, do you have idea?

                              • reply
                              • like

                              did you run rebuild-wekan.sh with first 1 to install deps and then 2 to build wekan?

                                • reply
                                • like

                                Yes, sudo rebuild-wekan.sh two times, 1 then 2. I am on devel branch.

                                  • reply
                                  • like

                                  Do not use sudo, or I should work on master?

                                    • reply
                                    • like

                                    You should work at edge

                                      like-fill
                                      1
                                      • reply
                                      • like

                                      at wekan directory type meteor

                                        • reply
                                        • like

                                        then wekan is at http://localhost:3000 I think

                                          • reply
                                          • like

                                          or add port number like meteor --port 4000

                                            • reply
                                            • like

                                            then mongodb is at next port number

                                              • reply
                                              • like

                                              mongo --port 4001

                                                • reply
                                                • like

                                                You can install MongoDB 3.2.x from mongodb website, packages mongodb-org-tools and mongodb-org-shell

                                                  • reply
                                                  • like

                                                  to have mongo client commands

                                                    • reply
                                                    • like