├── .gitignore ├── .travis.yml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.travis.yml 4 | !README.md 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 2.4 3 | before_script: gem install awesome_bot 4 | script: awesome_bot README.md --white-list travis-ci 5 | notifications: 6 | email: false 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # companies [![Build Status](https://travis-ci.org/developers-nepal/companies.svg?branch=master)](https://travis-ci.org/developers-nepal/companies) 2 | List of Nepalese Software Companies Hosting Projects on Github 3 | 4 | 5 | - [AdSanjal](https://github.com/AdSanjal) 6 | - [Awecode](https://github.com/awecode) 7 | - [Bajra Technologies](https://github.com/bajratech) 8 | - [Braindigit IT Solution](https://github.com/braindigit) 9 | - [Cixware Pvt. Ltd.](https://github.com/cixware) 10 | - [CloudFactory](https://github.com/cloudfactory) 11 | - [Codekavya](https://github.com/codekavya) 12 | - [Cyclone Nepal](https://github.com/cninfotech) 13 | - [Do Surf In Private Limited](https://github.com/DoSurfIn) 14 | - [Ekbana Technologies](https://github.com/ekbanasolutions) 15 | - [Enliv Technology](https://github.com/enlivit) 16 | - [Expresiv Studios](https://github.com/expresiv) 17 | - [Fawesome Apps](https://github.com/FawesomeApps) 18 | - [Fusemachines](https://github.com/Fusemachines) 19 | - [Grepsr](https://github.com/grepsr) 20 | - [ITVilla Pvt. Ltd.](https://github.com/itvilla) 21 | - [Inbox IT Solutions](https://github.com/InboxITSolutions) 22 | - [InternSathi](https://github.com/internsathi) 23 | - [IntroCept](https://github.com/IntroCept) 24 | - [Jankari Tech Pvt. Ltd.](https://github.com/JankariTech) 25 | - [Janaki Technology Pvt. Ltd.](https://github.com/janakitech) 26 | - [Jyaasa Technologies](https://github.com/Jyaasa) 27 | - [Kath Codex Pvt. Ltd.](https://github.com/KathCodex) 28 | - [Karkhana](https://github.com/Karkhana) 29 | - [Lamputer Web Dev](https://github.com/Lamputer) 30 | - [Leapfrog Technology](https://github.com/leapfrogtechnology) 31 | - [Logpoint](https://github.com/logpoint) 32 | - [Lohani Tech](https://github.com/lohanitech) 33 | - [Oval Analytics Pvt. Ltd.](https://github.com/OvalAnalytics) 34 | - [PageVamp](https://github.com/pagevamp) 35 | - [Parewa Labs](https://github.com/parewalabs) 36 | - [Phunka Technologies](https://github.com/phunka/) 37 | - [Picovico](https://github.com/picovico) 38 | - [Saffron Digital Agency](https://github.com/saffrondigitalagency) 39 | - [Sastodeal Pvt. Ltd.](https://github.com/sastodeal) 40 | - [Semicolon Developers](https://github.com/semicolondevelopers) 41 | - [Technomax Pvt. Ltd](https://github.com/Technomax) 42 | - [Theme Grill](https://github.com/themegrill) 43 | - [tsokén designs](https://github.com/tsokendesigns) 44 | - [Web Sys Pvt Ltd](https://github.com/Websys) 45 | - [Wen Themes](https://github.com/wenthemes) 46 | - [Young Innovations](https://github.com/younginnovations) 47 | 48 | 49 | ## Contribution 50 | Send us a PR to add your company. Please maintain the list in alphabetical order. 51 | --------------------------------------------------------------------------------