forked from wekan/wekan
-
Notifications
You must be signed in to change notification settings - Fork 0
Vagrant
benh57 edited this page Jun 14, 2019
·
4 revisions
- Download Vagrant https://www.vagrantup.com/ and Virtualbox https://www.virtualbox.org/wiki/Downloads
- In CMD or BASH
mkdir wekan_vagrant
cd wekan_vagrant
vagrant init -m ubuntu/xenial64
- Open up the vagrantfile in a text editor and copy this into it:
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.provision :shell, path: "bootstrap.sh"
config.vm.network "forwarded_port", guest: 8080, host: 8080
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
end
end
- Create a new text file in the same folder and call it bootstrap.sh
- Copy this into the sh file
#!/usr/bin/env bash
sudo apt-get update
sudo snap install wekan
sudo snap set wekan root-url="http://localhost:8080"
sudo systemctl restart snap.wekan.wekan
-
Type 'vagrant up' to start the VM and wait for it to boot.
-
Got to your local browser and type in
localhost:8080
-
You can go inside VM with
vagrant ssh
-
Look at Ubuntu snap wiki for additional configuration, backups etc
Once your done testing your Vagrantbox just go back to the cmd line and type vagrant destroy
And it completely wipes any trace of the test environment from your system, however you can very very easily rebuild it by doing another vagrant up
Note: This will not save any data you may have put into Wekan!!!
- About
- No UI major redesign
- Test Edge
- FAQ
- IRC FAQ - answers to questions asked at IRC
- Roadmap - board at Wekan demo
- Team
- Press
- Blog
- NOT related to Wekan
- Wekan vs Trello vs Restyaboard
- Features
- Custom Logo
- Gantt Chart
- Admin: Impersonate user
- Emoji etc syntax
- Numbered text syntax
- Time Tracking
- Subtasks <== Has fix
- Templates
- Archive and Delete
- Adding Users
- LDAP
- Keycloak
- Google login
- Azure
- OAuth2, Auth0, GitLab, RocketChat
- Oracle OIM on premise using OAuth2
- ADFS 4.0 using OAuth2 and OpenID
- Nextcloud
- CAS Please test
- SAML Please test
- IFTTT
- Custom Fields
- Due Date
- Forgot Password
- Requirements
- Translations
- Roadmap
- Fix Export board menu not visible on some boards
- Integrations
- RAM usage
- Demo
- Swimlane Documentation
- Wekan Markdown
- Download Wekan for various Platforms: Supported by xet7, Operating Systems, NAS, Cloud
- Example: New card with Python3 and REST API
- Python client to REST API
- Java
- Wekan Sandstorm cards to CSV using Python
- Excel and VBA
- Global Webhook
- Limiting Webhook data
- Receiving Webhooks
- Outgoing Webhook to Discord/Slack/RocketChat/Riot
- Outgoing Webhook to NodeRed
- Outgoing Webhook to PowerShell
- Security: Webhook and CA
- Outgoing Webhooks Data
- Outgoing Webhooks and Let's Encrypt
- Outgoing Webhooks Original Pull Request, multiple Webhooks, more parameters and response order