An open API service indexing awesome lists of open source software.

https://github.com/akodiat/shipahoy


https://github.com/akodiat/shipahoy

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Ship Ahoy
(proof of concept, work in progress)

# Contribute
To run locally, start a static webserver in this directory. If you have python 3, you can type:
```bash
python -m http.server 8000
```

A full list of oneliners is available here:
https://github.com/imgarylai/awesome-webservers

Maintain a linear history on the main branch; rebase rather than merging:
```bash
git pull --rebase
```

Smaller changes can be pushed directly to `main`, but larger features that involves other developers should have their separate feature branch and a pull request.

```bash
git checkout -b new-feature
git add
git commit
git push -u origin new-feature
```