Welcome to StartupDetroit. This is an open source approach to building the Detroit Startup Community. Our goal is to tie together the greater Detroit startup community and be a central hub for startups and tech. Read on to learn how to contribute!
To join the Slack community go to https://startupdetroit.herokuapp.com/ to get an invite. This is managed thanks to a rauchg/slackin instance, hosted on Heroku.
Please contribute using Github Flow. Create a branch, add commits, and open a pull request.
Create an issue
You can:
Submit an issue titled "Add [Name] Logo". In the description, include:
- A link to your logo
- The city your org is based in (ex: Royal Oak, MI)
- Website link
- The type of supporter you are (Startup, Community Supporter, Investor)
Or, you can:
- Add the logo in the src/static/img/logos folder. Follow the naming convention of logo-[name].
- Import the logo in the src/components/Community.js file by adding this line at the top
import logoName from '../static/img/logos/logo-name.png';
- Add the logo in alphabetical order in the same file, as shown below.
<Logo
src={logoName}
location="Detroit, MI"
href="http://www.example.com"
name="Logo"
type="Startup, Community Supporter, or Investor"
/>
- Submit a pull request
Getting started:
- Download and install Yarn if you haven't already.
- Run the following commands to clone the repository, install packages and launch in your browser
git clone https://github.com/startupdetroit/www
cd www
yarn install
yarn start
Build:
yarn run build
Deploy:
yarn run deploy