https://github.com/acseo/userback2redmine
Command line tool to import Userback issues into Redmine
https://github.com/acseo/userback2redmine
redmine symfony-components sync tool userback
Last synced: 12 months ago
JSON representation
Command line tool to import Userback issues into Redmine
- Host: GitHub
- URL: https://github.com/acseo/userback2redmine
- Owner: acseo
- Created: 2020-02-26T23:08:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-06T16:15:44.000Z (over 1 year ago)
- Last Synced: 2025-06-01T06:31:20.557Z (about 1 year ago)
- Topics: redmine, symfony-components, sync, tool, userback
- Language: PHP
- Size: 16.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Import Userback CSV file in Redmine
## Presentation
This tool allows to transfer userback issues in redmine issues
### Features :
* create or update tickets
* field mapping between Userback and Redmine
## Usage
```bash
$ git clone https://github.com/acseo/Userback2Redmine.git
$ composer install
# create a config file based on config.sample.yml
# launch the tool
$ php bin/userback2redmine sync /path/to/config/file.yml path/to/userback/issues.csv
```
### Configuration file
```yaml
redmine:
# URL of your redmine instance
url: ~
# Your Remdine API access key (go to your account settings to get one)
access_key: ~
# The target Redmine project name
project: ~
issues:
# Field or custom field used for identification of the issue
identifier:
userback: 'ID'
redmine: 'My Custom Field'
# Map Userback CSV columns to Redmine field or custom fields
mapping:
ID: ~
Collaboration Url: ~
Date: 'start_date' # for example
Page: ~
Email: ~
Rating: ~
Description: 'subject'
Screenshot: ~
Attachment: ~
User Agent: ~
Window Size: ~
Screen Resolution: ~
Workflow: 'status_id'
Priority: ~
Category: ~
Assignee: ~
Country: ~
City: ~
```
### format data sent to Redmine
We use an uggly method in order to manipulate csv data extracted from the Userback CSV file and transform it before sending it to redmine.
It is achieved in the file `src/Custom/FormatToRedmine.php` that you can edit according to your needs.