Jira Assistant Development Guidelines and Coding Practices
Before diving into development, please review the Contribution Guidelines to ensure a seamless collaboration experience.
To kickstart your development journey, follow these steps:
Refer Code Setup document to setup and run Jira Assistant locally.
For easy development, use Jira's Cloud version, free for up to 5 users. You can also join Shridhar TL's shared development instance by reaching out to shridhar.tl@gmail.com. Sharing this instance enhances development by leveraging a large dataset. To learn more or set up your instance:
If you prefer local testing, Docker makes it straightforward. Run the following command to set up a Docker container with Jira:
Note: This command will download around 1GB of data for container setup.
docker pull atlassian/jira-software
docker volume create --name jiraVolume
docker run -v jiraVolume:/var/atlassian/application-data/jira --name="jira" -d -p 9090:8080 atlassian/jira-software
For subsequent development sessions, simply start the existing container with:
docker start jira
Access your personal Jira instance by opening http://localhost:9090 in your browser and following the setup instructions.