Browse Source

Merge pull request #9 from codefeathers/develop

Minor changes and cleanup of .md files to /docs/
pull/14/head
Muthu Kumar 7 years ago
committed by GitHub
parent
commit
f6619db7fe
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      Contributing.MD
  2. 12
      README.md
  3. 6
      docs/Changelog.md
  4. 15
      docs/Contributors.md
  5. 6
      docs/Roadmap.md

6
Contributing.MD

@ -14,15 +14,15 @@ Contributing to a project on Github is pretty straight forward. If this is you'r
- Fork this repo. - Fork this repo.
And that's it! Read the code available and change the part you don't like! You're change should not break the existing code and should pass the tests. We recommend using VS Code while working on this project. And that's it! Read the code available and change the part you don't like! Your change should not break any existing functionality and should work as promised. If you're having trouble with it, mention it. We recommend using VS Code while working on this project.
If you're adding a new functionality, start from the branch master. It would be a better practice to create a new branch and work in there. If you're adding a new functionality, start from the branch develop. It would be a better practice to create a new branch and work in there.
When you're done, submit a pull request and for one of the maintainers to check it out. We would let you know if there is any problem or any changes that should be considered. When you're done, submit a pull request and for one of the maintainers to check it out. We would let you know if there is any problem or any changes that should be considered.
### Tests ### Tests
We haven't written tests yet and you can manually try commands and assure the stability of the code. If you're adding a new test please write documentation for it by creating Tests.MD. We haven't written tests yet and you can manually try commands and assure the stability of the code. If you're adding a new test please write documentation for it by creating /docs/Tests.MD.
### Documentation ### Documentation

12
README.md

@ -10,7 +10,7 @@
> Current version: `up v.0.2.1 (Alpha)` > Current version: `up v.0.2.1 (Alpha)`
> Notes: `up` is now in Alpha! 🎉 [(Changelog)](Changelog.md)\ > Notes: `up` is now in Alpha! 🎉 [(Changelog)](/docs/Changelog.md)\
> ⚠️ ❌ `up` is pretty useable so far. If you're testing `up` on a development server, do give us feedback. > ⚠️ ❌ `up` is pretty useable so far. If you're testing `up` on a development server, do give us feedback.
**`up`** is a command line application that creates nginx server blocks quickly with a single command. **`up`** is a command line application that creates nginx server blocks quickly with a single command.
@ -43,12 +43,10 @@ Format: `up command <required> [optional]`
- `up proxy example.com 8081` will create a reverse proxy listening at port 8081. - `up proxy example.com 8081` will create a reverse proxy listening at port 8081.
- `up kill example.com` - `up kill example.com`
## Contributors, Collaborators, and Guides ---
Plenty of people gave their time guiding me and shaping this tool. <h4 align="center"><a href="/docs/Roadmap.MD">Roadmap</a></h4>
I'd like to thank and give credit to [The Devs Community](https://thedevs.network), who are the primary reason this exists. <h4 align="center"><a href="Contributing.MD">Contribution Guidelines</a></h4>
I'd also personally thank the following amazing people for their valuable support and feedback: **Pouria Ezzati, Thomas Rory Gummerson, Omar Khalil, Martin, GingerPlusPlus, Faizan Akram.** <h4 align="center"><a href="/docs/Contributors.md">Contributors, Collaborators, and Guides</a></h4>
And the following people for their moral support and listening to my constant bickering: **David (The Humanoid), Иброхеем, Simon 'SitiSchu' Schürrle.**

6
Changelog.md → docs/Changelog.md

@ -1,8 +1,10 @@
# Changelog / Version history # Changelog / Version history
## `up` v. 0.2.0 ## `up` v. 0.2.1
- Bug fix and patch for `up kill-all` breaking unexpectedly due to undefined default config file.
Changelog: ## `up` v. 0.2.0
- Under the hood BREAKING changes. Working directories change. - Under the hood BREAKING changes. Working directories change.
- `/var/www/` to `/etc/up-serve/static/` - `/var/www/` to `/etc/up-serve/static/`

15
docs/Contributors.md

@ -0,0 +1,15 @@
# Contributors, Collaborators, and Guides
I'd like to thank and give credit to [The Devs Community](https://thedevs.network), who are the primary reason this exists.
Plenty of people gave their time guiding me and shaping this tool. I'd personally thank the following amazing people for their valuable support and feedback:
- Pouria Ezzati (https://github.com/poeti8)
- Thomas Rory Gummerson (https://github.com/trgwii)
- Omar Khalil (https://github.com/DonMcCoy)
- Martin (https://gitlab.com/C0rn3j)
- GingerPlusPlus (https://github.com/GingerPlusPlus)
- Faizan Akram (https://github.com/faizanakram99)
- Chris Watson (https://github.com/watzon)
And many many people who did not directly contribute but managed to keep listening to my crazy ideas (and motivating) towards the beginning of this project.

6
Roadmap.md → docs/Roadmap.md

@ -11,16 +11,16 @@ This living document details our plans for `up`. If you would like to request fe
- [x] MVP - Minimum Viable Product. - [x] MVP - Minimum Viable Product.
- [x] `up static` and `up proxy` MUST work. - [x] `up static` and `up proxy` MUST work.
- [x] `up kill` MUST work. - [x] `up kill` MUST work.
- [x]List servers option. - [x] List servers option.
- [x] `up list` MUST provide list of servers running from `/etc/up-serve/servers.up` file. - [x] `up list` MUST provide list of servers running from `/etc/up-serve/servers.up` file.
- [x] `up static` MUST have an option to specify path to root. Example: `up static example.com ./public`. - [ ] `up static` MUST have an option to specify path to root. Example: `up static example.com ./public`.
- [ ] `up static` and `up proxy` MAY take a Git URL to deploy. Example: - [ ] `up static` and `up proxy` MAY take a Git URL to deploy. Example:
1. `up static example.com --git https://github.com/h5bp/html5-boilerplate /html` 1. `up static example.com --git https://github.com/h5bp/html5-boilerplate /html`
2. `up proxy example.com 5000 --git https://github.com/heroku/node-js-sample` 2. `up proxy example.com 5000 --git https://github.com/heroku/node-js-sample`
- [ ] Option for HTTPS. - [ ] Option for HTTPS.
- [ ] MUST add a `-s` or `--secure` flag to enable automatic HTTPS config with HTTP/2 enabled by default. - [ ] MUST add a `-s` or `--secure` flag to enable automatic HTTPS config with HTTP/2 enabled by default.
- [ ] HSTS MAY be enabled with a `-s -h`, `-sh`, `-secure -hsts` or `--secure-hsts` flag. Will warn user to be sure of what they are doing. - [ ] HSTS MAY be enabled with a `-s -h`, `-sh`, `-secure -hsts` or `--secure-hsts` flag. Will warn user to be sure of what they are doing.
- [ ] MAY add a `-c` flag to use `certbot` to automatically generate certificates using letsencrypt. - [ ] MAY add a `-c` flag to use `certbot` or `acme.sh` to automatically generate certificates using letsencrypt.
- [ ] MAY make `up` work on Windows. - [ ] MAY make `up` work on Windows.
Want more features or prioritize something? Raise an [issue!](https://github.com/codefeathers/up-serve/issues) Want more features or prioritize something? Raise an [issue!](https://github.com/codefeathers/up-serve/issues)
Loading…
Cancel
Save