Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AB#141288 Feat: Equinor GitHub compliance #1363

Merged
merged 1 commit into from
Jan 24, 2024
Merged
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
49 changes: 47 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


<h1 align="center">Gordo</h1>
<div align="center">
<!-- Uncomment line below once we decided on 'logo.png' -->
Expand All @@ -19,6 +17,22 @@
</div>

---

# Table of Contents
* [About](#About)
* [Components](#Components)
* [Install](#Install)
* [Python package ](#Python-package)
* [Developer manual](#Developer-manual)
* [Setup](#Setup)
* [How to update packages](#How-to-update-packages)
* [Examples](#Examples)
* [How to run tests locally](#How-to-run-tests-locally)
* [Build the documentation](#Build-the-documentation)
* [Contributing](#Contributing)

---

## About

Gordo fulfills the role of inhaling config files and supplying components to the pipeline of:
Expand Down Expand Up @@ -121,3 +135,34 @@ This command will run the local documentation server:
> cd docs/
> make watch
```

## Contributing
We welcome contributions to this project! To get started, please follow these steps:

1. Fork this repository to your own GitHub account and then clone it to your local device.

```
git clone https://github.com/your-account/your-project.git
```

2. Create a new branch for your feature or bug fix.

```
git checkout -b your-feature-or-bugfix-branch
```

3. Make your changes and commit them with a descriptive message.

```
git commit -m "Add a new feature" -a
```

4. Push your changes to your forked repository.

```
git push origin your-feature-or-bugfix-branch
```

5. Open a pull request in this repository and describe the changes you made.

We'll review your changes and work with you to get them merged into the main branch of the project.
Loading