This is the website and mobile app for Hello, Startup: A Programmer's Guide to Building Products, Technologies, and Teams, an O'Reilly book by Yevgeniy Brikman.
- The Hello, Startup website is available at https://www.hello-startup.net.
- Contributions, especially to the list of Startup Resources, are welcome via pull request (see instructions below).
- The mobile app version is currently on pause as the market doesn't seem big enough for it.
- Install grunt.js
- Install jekyll
npm start
- http://localhost:4000
The grunt
command runs grunt watch
, which will watch for changes in the
background and recompile everything as necessary. Jekyll is a bit slow, so it
can take ~5 seconds for your changes to be visible.
As an alternative to installing Ruby, Jekyll, and Grunt, if you're a user of Docker, you can run a Docker image of hello-startup-site that has all the dependencies already setup for you.
git clone
this repodocker-compose up
- Go to
http://localhost:4000
to test
- jekyll: used to assemble static HTML from the HTML
fragments in
_layouts
,_includes
,_resources
, and_data
. - grunt.js: used to concatenate and minify CSS and JavaScript.
- PhoneGap: used to package up the static HTML as iOS and Android apps.
- GitHub Pages: for hosting the website.
- CloudFlare: free SSL and CDN.
- Bootstrap: for CSS, layout, general theme.
- Font Awesome: for icons.
The Startup Resources are generated
from YAML data files in the _data
folder (see the
Jekyll Data Files documentation for
more info). These resources are a work in progress and I welcome contributions
via pull request.
Each YAML file contains the information for one type of resource. For example,
deployment.yml
contains all the resources related to deploying code.
The basic format is:
name: "Name for this resource"
description: "Brief description of this resource."
icon: "The name of one of the Font Awesome icons to represent this resource."
type: "one of: products, technologies, or teams"
categories:
- id: "a-unique-id-for-this-category"
name: "Human readable name for the category"
sites: # List of websites for this category
- name: "Website #1"
url: "https://www.website-number-one.com/"
image: "screenshot1.jpg" # 800x400 screenshot under images/resources
description: "A brief description of website #1"
- name: "Website #2"
url: "https://www.website-number-two.com/"
image: "screenshot2.jpg" # 800x400 screenshot under images/resources
description: "A brief description of website #2"
See the _data
folder for lots of examples.
Note: mobile app development has been put on pause and may not work any more
- Install PhoneGap
- Install the PhoneGap Developer App on your computer and the mobile app for your phone.
- Run
grunt
as explained in the "Running the website" instructions. This will assemble all of the HTML. - Add a new project to the PhoneGap Developer App by adding the
mobile
folder (which hasconfig.xml
). - At the bottom of the PhoneGap Developer App, it should tell you that the project is running and the URL. Connect to this URL in the PhoneGap mobile app on your phone.
- If you want to build the app for real, use PhoneGap Build.
Both PhoneGap and Jekyll require a specific folder structure, and those are not mutually compatible. To make this all work using the same content in the same repo, I've used a bit of a hack with symlinks:
- PhoneGap's
config.xml
andindex.html
are in themobile
folder. - Everything else is in the normal Jekyll locations (e.g.
_includes
,_layouts
,javascripts
,stylesheets
). All of these files get compiled into the normal Jekyll output folder (_site
). - I've added symlinks from the
mobile/www
folder to_site
. Therefore, if you point PhoneGap at themobile
folder, it will see the folder structure it expects. - Since
_site
is normally generated by the Jekyll build process, you don't usually check it in. However, I had to in this case, or the symlinks won't work, which causes an error when GitHub Pages tries to build the site. Therefore, I've checked in a few placeholder files that ensure the folders we symlink to exist.