├── MIT.md ├── README.md ├── app_screenshot.png ├── programmer.txt ├── simplicity.txt └── solve.txt /MIT.md: -------------------------------------------------------------------------------- 1 | ## Copyright 2021, [YOUR NAME] 2 | 3 | ###### Please delete this line and the next one 4 | ###### APP TYPE can be a webpage/website, a web app, a software and so on 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy of this [APP TYPE] and associated documentation files, to deal in the [APP TYPE] without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the [APP TYPE], and to permit persons to whom the [APP TYPE] is furnished to do so, subject to the following conditions: 7 | 8 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the [APP TYPE]. 9 | 10 | THE [APP TYPE] IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE [APP TYPE] OR THE USE OR OTHER DEALINGS IN THE [APP TYPE]. 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](https://img.shields.io/badge/Microverse-blueviolet) 2 | 3 | # Project Name 4 | 5 | > Description the project. 6 | 7 | 8 | ## Built With 9 | 10 | - Major languages 11 | - Frameworks 12 | - Technologies used 13 | 14 | ## Live Demo (if available) 15 | 16 | [Live Demo Link](https://livedemo.com) 17 | 18 | 19 | ## Getting Started 20 | 21 | **This is an example of how you may give instructions on setting up your project locally.** 22 | **Modify this file to match your project, remove sections that don't apply. For example: delete the testing section if the currect project doesn't require testing.** 23 | 24 | 25 | To get a local copy up and running follow these simple example steps. 26 | 27 | ### Prerequisites 28 | 29 | ### Setup 30 | 31 | ### Install 32 | 33 | ### Usage 34 | 35 | ### Run tests 36 | 37 | ### Deployment 38 | 39 | 40 | 41 | ## Authors 42 | 43 | 👤 **Author1** 44 | 45 | - GitHub: [@githubhandle](https://github.com/githubhandle) 46 | - Twitter: [@twitterhandle](https://twitter.com/twitterhandle) 47 | - LinkedIn: [LinkedIn](https://linkedin.com/in/linkedinhandle) 48 | 49 | 👤 **Author2** 50 | 51 | - GitHub: [@githubhandle](https://github.com/githubhandle) 52 | - Twitter: [@twitterhandle](https://twitter.com/twitterhandle) 53 | - LinkedIn: [LinkedIn](https://linkedin.com/in/linkedinhandle) 54 | 55 | ## 🤝 Contributing 56 | 57 | Contributions, issues, and feature requests are welcome! 58 | 59 | Feel free to check the [issues page](../../issues/). 60 | 61 | ## Show your support 62 | 63 | Give a ⭐️ if you like this project! 64 | 65 | ## Acknowledgments 66 | 67 | - Hat tip to anyone whose code was used 68 | - Inspiration 69 | - etc 70 | 71 | ## 📝 License 72 | 73 | This project is [MIT](./MIT.md) licensed. 74 | -------------------------------------------------------------------------------- /app_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yayner2002/Try-Gitflow/ff5a8d902a03ff74653e20db9f9664a156814aae/app_screenshot.png -------------------------------------------------------------------------------- /programmer.txt: -------------------------------------------------------------------------------- 1 | A good programmer is someone who always looks both ways before crosing a one-way street.Doug Linder 2 | 3 | -------------------------------------------------------------------------------- /simplicity.txt: -------------------------------------------------------------------------------- 1 | "Nature is pleased with simplicity. And nature is no dummy." - Isaac Newton 2 | -------------------------------------------------------------------------------- /solve.txt: -------------------------------------------------------------------------------- 1 | First, solve the problem. Then, write the code." – John Johnson --------------------------------------------------------------------------------