├── .gitignore ├── 404.html ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── header.html └── home-icon.svg ├── _layouts ├── home.html └── topic.html ├── _stages ├── 1-solidification.md ├── 2-prototyping.md ├── 3-minimum-viable-product.md └── 4-scale.md ├── _topics ├── business-metrics.md ├── gathering-feedback.md ├── infrastructure.md ├── landing-pages.md ├── legals.md ├── marketing.md ├── metrics.md ├── naming.md ├── operations.md ├── payment.md ├── presentations.md ├── security.md ├── storage.md ├── user-accounts.md ├── ux-analysis.md └── ux-prototyping.md ├── assets ├── main.scss └── topics │ ├── collect-metrics.svg │ ├── feedback.svg │ ├── infrastructure.svg │ ├── landing-page.svg │ ├── legal.svg │ ├── marketing.svg │ ├── metrics.svg │ ├── naming.svg │ ├── operations.svg │ ├── payment.svg │ ├── presentation.svg │ ├── prototype.svg │ ├── security.svg │ ├── storage.svg │ ├── users.svg │ └── ux.svg ├── by-stage.md └── index.md /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/404.html -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/home-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_includes/home-icon.svg -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_layouts/home.html -------------------------------------------------------------------------------- /_layouts/topic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_layouts/topic.html -------------------------------------------------------------------------------- /_stages/1-solidification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_stages/1-solidification.md -------------------------------------------------------------------------------- /_stages/2-prototyping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_stages/2-prototyping.md -------------------------------------------------------------------------------- /_stages/3-minimum-viable-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_stages/3-minimum-viable-product.md -------------------------------------------------------------------------------- /_stages/4-scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_stages/4-scale.md -------------------------------------------------------------------------------- /_topics/business-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/business-metrics.md -------------------------------------------------------------------------------- /_topics/gathering-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/gathering-feedback.md -------------------------------------------------------------------------------- /_topics/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/infrastructure.md -------------------------------------------------------------------------------- /_topics/landing-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/landing-pages.md -------------------------------------------------------------------------------- /_topics/legals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/legals.md -------------------------------------------------------------------------------- /_topics/marketing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/marketing.md -------------------------------------------------------------------------------- /_topics/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/metrics.md -------------------------------------------------------------------------------- /_topics/naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/naming.md -------------------------------------------------------------------------------- /_topics/operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/operations.md -------------------------------------------------------------------------------- /_topics/payment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/payment.md -------------------------------------------------------------------------------- /_topics/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/presentations.md -------------------------------------------------------------------------------- /_topics/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/security.md -------------------------------------------------------------------------------- /_topics/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/storage.md -------------------------------------------------------------------------------- /_topics/user-accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/user-accounts.md -------------------------------------------------------------------------------- /_topics/ux-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/ux-analysis.md -------------------------------------------------------------------------------- /_topics/ux-prototyping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/_topics/ux-prototyping.md -------------------------------------------------------------------------------- /assets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/main.scss -------------------------------------------------------------------------------- /assets/topics/collect-metrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/collect-metrics.svg -------------------------------------------------------------------------------- /assets/topics/feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/feedback.svg -------------------------------------------------------------------------------- /assets/topics/infrastructure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/infrastructure.svg -------------------------------------------------------------------------------- /assets/topics/landing-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/landing-page.svg -------------------------------------------------------------------------------- /assets/topics/legal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/legal.svg -------------------------------------------------------------------------------- /assets/topics/marketing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/marketing.svg -------------------------------------------------------------------------------- /assets/topics/metrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/metrics.svg -------------------------------------------------------------------------------- /assets/topics/naming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/naming.svg -------------------------------------------------------------------------------- /assets/topics/operations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/operations.svg -------------------------------------------------------------------------------- /assets/topics/payment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/payment.svg -------------------------------------------------------------------------------- /assets/topics/presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/presentation.svg -------------------------------------------------------------------------------- /assets/topics/prototype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/prototype.svg -------------------------------------------------------------------------------- /assets/topics/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/security.svg -------------------------------------------------------------------------------- /assets/topics/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/storage.svg -------------------------------------------------------------------------------- /assets/topics/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/users.svg -------------------------------------------------------------------------------- /assets/topics/ux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/assets/topics/ux.svg -------------------------------------------------------------------------------- /by-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/by-stage.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroze/awesome-venturing/HEAD/index.md --------------------------------------------------------------------------------