Skip to content
Open
Show file tree
Hide file tree
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
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# TICKETEE

An exploration/experiment in open source for #CodeNewbies

## Get Started:

### Fork the app!
![Click fork](doc/images/fork-project.png)
### Download/clone the app!
![Click clone](doc/images/clone-project.png)
* Copy the URL in the clone with HTTPS window.
* Open a terminal of your choice
* Change to a directory where you keep your source code
* For eg. `cd ~/source-code`
* Run the command `git clone [paste the url you copied here]`
* in my case I used `git clone https://github.com/shadowcliff/ticketee.git`

### Open in your favorite editor...
I use VSCode but feel free to use Atom/Vim/RubyMine or whatever. Import the project using your IDE (Or in VSCode merely open the folder you cloned it to).

### Change some code locally...
I'm using this Documentation as an example of my first pull request.

### Commit and push your changes
Either use your IDE to commit and push the changes or run:
* `git add -A`
* ...to stage all changed files for commiting
* `git commit -m 'I changed some stuff to make stuff better`
* ...to perform the actual commit. (Use your own commit message.)
* `git push`
* ...to push your commit to your account on github!

### Create a Pull Request
Open Github in your browser and click the create Pull Request button!

### Wait for smoke (Feedback)
Operators are standing by! Someone working on this project should either approve your PR or give you feedback momentarily!
28 changes: 0 additions & 28 deletions README.rdoc

This file was deleted.

Binary file added doc/images/clone-project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/images/fork-project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.