Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Bug Report
description: File a bug report
labels: [bug]
body:
- type: textarea
id: description
attributes:
label: Description
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to Reproduce
render: julia
validations:
required: true
- type: input
id: version
attributes:
label: Version
validations:
required: true
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Discussions
url: https://github.com/harmoniqs/DirectTrajOpt.jl/discussions
about: Questions and discussion.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Feature Request
description: Suggest an idea
labels: [enhancement]
body:
- type: textarea
id: motivation
attributes:
label: Motivation
validations:
required: true
- type: textarea
id: proposal
attributes:
label: Proposed Solution
13 changes: 13 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Related Issue
Closes #<issue-number>

## Description

## Type of Change
- [ ] Bug fix
- [ ] New feature
- [ ] Documentation
- [ ] Infrastructure

## Verification
- [ ] `julia runtests.jl` exits 0
34 changes: 34 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Contributing to DirectTrajOpt.jl

Welcome! DirectTrajOpt.jl provides the low-level optimization infrastructure
for [Piccolo.jl](https://github.com/harmoniqs/Piccolo.jl) — trajectory
parametrizations, integrators, and solver backends. Licensed under MIT.

Every code change needs a GitHub issue and a PR. Create one first if it does
not exist.

## Dev Setup

```bash
git clone git@github.com:harmoniqs/DirectTrajOpt.jl.git && cd DirectTrajOpt.jl
julia --project -e 'using Pkg; Pkg.instantiate()'
```

## Running Tests

```bash
julia --project test/runtests.jl
```

## Submitting a PR

1. Create an issue describing the change.
2. Branch from `main`.
3. Commit focused changes with descriptive messages.
4. Run the test suite.
5. Open a draft PR with `Closes #<N>` at the first commit.
6. Mark ready when green.

## Getting Help

Use [GitHub Discussions](https://github.com/harmoniqs/DirectTrajOpt.jl/discussions) for questions.
Loading