https://github.com/akodiat/shipahoy
https://github.com/akodiat/shipahoy
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/akodiat/shipahoy
- Owner: Akodiat
- License: gpl-3.0
- Created: 2025-01-24T07:34:22.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-03-17T08:57:18.000Z (3 months ago)
- Last Synced: 2025-03-17T09:43:39.776Z (3 months ago)
- Language: JavaScript
- Homepage: https://akodiat.github.io/shipAhoy/
- Size: 12.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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-webserversMaintain 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
```