Skip to content

Instantly share code, notes, and snippets.

@chaps
Last active November 9, 2017 15:38
Show Gist options
  • Save chaps/68d67c46043e94ba59211e9eec8b6020 to your computer and use it in GitHub Desktop.
Save chaps/68d67c46043e94ba59211e9eec8b6020 to your computer and use it in GitHub Desktop.
estimation_fixture_gather_data

Estimation fixtures gather data.

Set your env vars previous to run the gather.sh script.

estimationuser="yerusername"

estimationpassword="yerpassword"
#!/bin/bash
mkdir -p data
estimation_fixtures -u $estimationuser -p $estimationpassword get_users > data/employees.json
estimation_fixtures -u $estimationuser -p $estimationpassword get_projects > data/projects.json
estimation_fixtures -u $estimationuser -p $estimationpassword get_employee_types > data/employee_types.json
estimation_fixtures -u $estimationuser -p $estimationpassword get_project_types > data/project_types.json
estimation_fixtures -u $estimationuser -p $estimationpassword get_project_assignments > data/project_assignments.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment