redmine

Redmine email configuration with environment variables

一曲冷凌霜 提交于 2019-12-04 20:17:00
I've configured email on redmine according to the instructions in the redmine wiki , and it all works fine. Here are the contents of my config/configuration.yml file: production: delivery_method: :smtp smtp_settings: address: "smtp.sendgrid.net" port: 587 authentication: :plain domain: "heroku.com" user_name: my_email@gmail.com password: my_password However I am trying to use environment variables in place of my_email@gmail.com and my_password like so: production: delivery_method: :smtp smtp_settings: address: "smtp.sendgrid.net" port: 587 authentication: :plain domain: "heroku.com" user_name:

Redmine Java Api - org.json.JSONException: A JSONObject text must begin with '{' at character 1

寵の児 提交于 2019-12-04 18:12:18
When I try run this code (The Issue example is taken from this web http://www.redmine.org/projects/redmine/wiki/Rest_api_with_java ) : RedmineManager redmineManager = new RedmineManager("http://something.cz", "somekey"); //I changed these two parameters for security reasons when paste here System.out.println(redmineManager.getProjects().size()); //this works fine Issue issueToCreate = new Issue(); issueToCreate.setSubject("This is the summary line 123"); Issue newIssue = redmineManager.createIssue("test-project", issueToCreate); //this line throws exception It ends with this exception

redmine安装

独自空忆成欢 提交于 2019-12-04 16:43:11
redmine + nginx + thin yum install git vim gem ruby-devel mysql-devel ImageMagick gem install bundler Step 1 下载redmine git clone https://github.com/redmine/redmine.git cd redmine git checkout 3.3-stable Step 2 Mysql 1234 CREATE DATABASE redmine CHARACTER SET utf8;CREATE USER 'redmine'@'%' IDENTIFIED BY 'xxxxxxxxxxxxxxx';GRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'%'; Step 3 配置 cp config/database.yml.example config/database.yml vim config/database.yml 123456 production: adapter: mysql2 database: redmine host: dxty.tech username: redmine password: xxxxxxxxxxxxxxx cp config/configuration.yml

How to persist data using postgres docker image?

北城以北 提交于 2019-12-04 11:52:15
问题 I'm trying to get my data to persist in /home/me/redmine so that when my container stops, no data loss. I'm using the official postgres docker hub image. Problem is, every time I start the postgres container, it immediately exits. This problem started when I appended 'data' to /var/lib/postgresql, otherwise, without adding 'data', it starts, but my data isn't being saved. Also, the path I have on my host machine is /var/lib/postgresql/9.4/data, but the image page says to use /var/lib

Anything speaking against the bitnami.org Ruby/Rails/Redmine Stack?

纵饮孤独 提交于 2019-12-04 11:35:21
问题 I am looking to set up a Redmine server on a Windows virtual machine on my local workstation. (Background in this related question.) I have zero knowledge of Ruby nor Rails, and while Redmine may be the opportunity to dip into those platforms somewhat, my first goal is to get it running as quickly and easily as possible. For that, I am eyeing the Bitnami Redmine Package. It promises point-and-click install, and a self-contained environment with everything you need. Apart from the learning

Heroku: Using external mount in local filesystem

旧时模样 提交于 2019-12-04 09:21:58
I know it's possible to mount an Amazon S3 bucket using Fuse (s3fs [or s3fsr ruby gem?]). My case is specific to Heroku. Heroku's filesystem is readonly for scalability and such, but is there a way to mount an amazon s3 in Heroku's filesystem? In my case, I use Redmine on Heroku and would like to use Redmine's built-in git repository management to link code reviews to my issues. Redmine needs to clone the repository to a local directory, which is possible but not persistent on Heroku. I would like Redmine to maintain a git repository on a mounted S3 bucket. Is this possible? If it was possible

常用docker命令,及一些坑

[亡魂溺海] 提交于 2019-12-04 09:11:04
常用docker命令,及一些坑 常用命令 查看容器的root用户密码 docker logs <容器名orID> 2 >& 1 | grep '^User: ' | tail -n1 因为docker容器启动时的root用户的密码是随机分配的。所以,通过这种方式就可以得到redmine容器的root用户的密码了。 查看容器日志 docker logs -f <容器名orID> 查看正在运行的容器 docker ps docker ps -a为查看所有的容器,包括已经停止的。 删除所有容器 docker rm $(docker ps -a -q) 删除单个容器 docker rm <容器名orID> 停止、启动、杀死一个容器 docker stop <容器名orID> docker start <容器名orID> docker kill <容器名orID> 查看所有镜像 docker images 删除所有镜像 docker rmi $(docker images | grep none | awk '{print $3 }' | sort -r) 运行一个新容器,同时为它命名、端口映射、文件夹映射。以redmine镜像为例 docker run --name redmine -p 9003 : 80 -p 9023 : 22 -d -v / var /redmine/files:

Redmine vs Chiliproject [closed]

…衆ロ難τιáo~ 提交于 2019-12-04 07:47:34
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 6 years ago . I'm in the process of switching from an experimental installation of Redmine to a company wide use. We do use some plugins that are mandatory for us such as redmine_backlog and redmine_gitosis (unmaintained, several forks exists). While redmine released 1.2.0, chiliproject

Redmine 3.3.0 (ruby on rails 4.2.6) stylesheets not generated/included in application.css

最后都变了- 提交于 2019-12-04 06:24:16
问题 I have installed redmine, managed to get it started but the UI seems to be missing it's css styles. If I follow the link for application[SomeId].css It show me an empty css containing the following message: /* * This is a manifest file that'll be compiled into application.css, which will include all the files * listed below. * * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, * or any plugin's vendor/assets/stylesheets directory can be

You cannot specify the same gem twice with different version requirements

笑着哭i 提交于 2019-12-04 05:51:31
I have 2 plugins installed(redmine_backlogs and redmine_ldap_sync), but after upgrade of redmine_ldap_sync from 2.0.0 to 2.0.1 a Gemfile was added. Here the backlogs's Gemfile https://github.com/backlogs/redmine_backlogs/blob/v1.0.2/Gemfile and ldap sync's Gemfile https://github.com/thorin/redmine_ldap_sync/blob/2.0.1/Gemfile In both cases, the simplecov is in the test group. I tried to run bundle install --without development test but I got this error: You cannot specify the same gem twice with different version requirements. You specified: simplecov (>= 0) and simplecov (~> 0.6) This does