|
1 | 1 | ---
|
2 |
| -title: "About gatsby-starter-morning-dew" |
3 |
| -slug: gatsby-starter-morning-dew |
4 |
| -cover: ./gatsby-cover.png |
| 2 | +title: "About the blog" |
| 3 | +slug: about |
5 | 4 | date: 2018-09-30
|
6 | 5 | language: en
|
7 |
| -disqus: true |
| 6 | +disqus: false |
8 | 7 | type: page
|
9 | 8 | ---
|
10 | 9 |
|
11 |
| -[](https://travis-ci.org/maxpou/gatsby-starter-morning-dew) [](https://github.com/prettier/prettier) [](https://codeclimate.com/github/maxpou/gatsby-starter-morning-dew/maintainability) |
| 10 | +# The blog |
12 | 11 |
|
| 12 | +The 040 code blog is an initiative from Developers that have a relation with the city [Eindhoven](https://www.thisiseindhoven.com/en), in the [Netherlonds](https://www.youtube.com/watch?v=eE_IUPInEuc). The name `040` points to area code used at the time we used the old landline for calling our friends and family. |
13 | 13 |
|
14 |
| -## gatsby-starter-morning-dew |
| 14 | +Articles on this blog are our ideas, experiments and opinion. For each blog post we make a nice picture from a place in Eindhoven that we like for some reason. |
| 15 | +<p><br></p> |
15 | 16 |
|
16 |
| -Gatsby starter for creating a new blog! |
| 17 | +# Credits |
17 | 18 |
|
18 |
| -[Demo website.](https://maxpou.github.io/gatsby-starter-morning-dew/) |
| 19 | +This blog is created with the [Gatsby](https://www.gatsbyjs.org/), an awesome framework to create a static blog using [React](https://reactjs.org/) and [GraphQL](https://graphql.org/). And to get even faster started we have based the blog on the React Starter [gatsby-starter-morning-dew](https://github.com/maxpou/gatsby-starter-morning-dew) |
19 | 20 |
|
20 |
| - |
21 |
| - |
22 |
| - |
23 |
| -## Installation |
24 |
| - |
25 |
| - |
26 |
| -* with Gatsby-cli: `gatsby new gatsby-blog https://github.com/maxpou/gatsby-starter-morning-dew` |
27 |
| - |
28 |
| -* without Gatsby-cli |
29 |
| - |
30 |
| - ```bash |
31 |
| - git clone my-site [email protected]:maxpou/gatsby-starter-morning-dew.git |
32 |
| - cd my-site |
33 |
| - yarn install |
34 |
| - ``` |
35 |
| - |
36 |
| -## Features |
37 |
| - |
38 |
| -- [💜 Gatsby v2](https://www.gatsbyjs.org/) / React 16 |
39 |
| -- 🔍 SEO optimized (robot.txt) |
40 |
| -- 💌 Write posts/pages in Markdown |
41 |
| - - 🎨 Code syntax highlight |
42 |
| - - 📚 Multilang support (blog post only) |
43 |
| -- 📱 Responsive design |
44 |
| -- ✨ PWA ready |
45 |
| - - ✈️ Offline support |
46 |
| - - 📃 Manifest support |
47 |
| -- [🔧 Fully configurable (see data/siteConfig.js)](./data/siteConfig.js) |
48 |
| -- 💬 Disqus support |
49 |
| -- 💅 css-in-js (with [styled-components](https://www.styled-components.com)) |
50 |
| -- 🔖 Groups post with tags |
51 |
| -- 📊 Google Analytics support |
52 |
| -- 🐦 post preview image generation (Twitter, Facebook) |
53 |
| -- 💎 Developer tools (eslint, prettier) |
54 |
| -- 👷 Travis CI support |
55 |
| - |
56 |
| - |
57 |
| - |
58 |
| - |
59 |
| - |
60 |
| -## Commands |
61 |
| - |
62 |
| -```sh |
63 |
| -# working locally |
64 |
| -yarn dev |
65 |
| - |
66 |
| -# generate build |
67 |
| -yarn build |
68 |
| - |
69 |
| -# format code |
70 |
| -yarn format |
71 |
| - |
72 |
| -# lint code |
73 |
| -yarn lint |
74 |
| - |
75 |
| -# Generate generate post preview images (yarn dev need to run before) |
76 |
| -yarn generatePostPreviewImages |
77 |
| -``` |
78 |
| - |
79 |
| -**:warning: Add `--prefix-paths` if you are using path prefix!** |
80 |
| - |
81 |
| -## Configure |
82 |
| - |
83 |
| -```js |
84 |
| -module.exports = { |
85 |
| - siteTitle: 'gatsby-starter-morning-dew', |
86 |
| - siteDescription: "👋 Hey I'm a Gatsby starter!", |
87 |
| - authorName: 'Maxence Poutord', |
88 |
| - twitterUsername: '_maxpou', |
89 |
| - authorAvatar: '/images/avatar.jpeg', |
90 |
| - multilangPosts: true, // enable/disable flags in post lists |
91 |
| - authorDescription: ` |
92 |
| - For the last decade, Maxence Poutord has worked with a variety of web technologies. He is currently focused on front-end development. |
93 |
| - On his day to day job, he is working as a senior front-end engineer at VSware. He is also a frequent tech speaker and a mentor. |
94 |
| - As a new digital nomad, he is living where the WIFI and sun is 😎 <br> |
95 |
| - Do you want to know more? <a href="https://www.maxpou.fr/about" target="_blank">Visit my website!</a> |
96 |
| - `, |
97 |
| - siteUrl: 'https://maxpou.github.io/', |
98 |
| - disqusSiteUrl: 'https://www.maxpou.fr/', |
99 |
| - // Prefixes all links. For cases when deployed to maxpou.fr/gatsby-starter-morning-dew/ |
100 |
| - pathPrefix: '/gatsby-starter-morning-dew', // Note: it must *not* have a trailing slash. |
101 |
| - siteCover: '/images/cover.jpg', |
102 |
| - googleAnalyticsId: 'UA-67868977-1', |
103 |
| - background_color: '#ffffff', |
104 |
| - theme_color: '#222222', |
105 |
| - display: 'minimal-ui', |
106 |
| - icon: 'src/assets/gatsby-icon.png', |
107 |
| - disqusShortname: 'maxpou', |
108 |
| - postsPerPage: 6, |
109 |
| - headerLinks: [ |
110 |
| - { |
111 |
| - label: '🏡', |
112 |
| - url: '/', |
113 |
| - }, |
114 |
| - { |
115 |
| - label: 'Blog', |
116 |
| - url: '/', |
117 |
| - }, |
118 |
| - { |
119 |
| - label: 'About', |
120 |
| - url: '/about', |
121 |
| - }, |
122 |
| - { |
123 |
| - label: 'Installation', |
124 |
| - url: '/how-to-install', |
125 |
| - }, |
126 |
| - ], |
127 |
| - // Footer information (ex: Github, Netlify...) |
128 |
| - websiteHost: { |
129 |
| - name: 'GitHub', |
130 |
| - url: 'https://github.com', |
131 |
| - }, |
132 |
| - footerLinks: [ |
133 |
| - [ |
134 |
| - 'Explore', |
135 |
| - { |
136 |
| - label: 'Blog', |
137 |
| - url: '/', |
138 |
| - }, |
139 |
| - { |
140 |
| - label: 'About', |
141 |
| - url: '/about', |
142 |
| - }, |
143 |
| - { |
144 |
| - label: 'Installation', |
145 |
| - url: '/how-to-install', |
146 |
| - }, |
147 |
| - ], |
148 |
| - [ |
149 |
| - 'Follow the author', |
150 |
| - { |
151 |
| - label: 'Github', |
152 |
| - url: 'https://github.com/maxpou/gatsby-starter-morning-dew', |
153 |
| - iconClassName: 'fa fa-github', |
154 |
| - }, |
155 |
| - { |
156 |
| - label: 'Website', |
157 |
| - url: 'https://www.maxpou.fr', |
158 |
| - iconClassName: 'fa fa-globe', |
159 |
| - }, |
160 |
| - { |
161 |
| - label: 'Twitter', |
162 |
| - url: 'https://twitter.com/_maxpou', |
163 |
| - iconClassName: 'fa fa-twitter', |
164 |
| - }, |
165 |
| - ], |
166 |
| - ], |
167 |
| -} |
168 |
| -``` |
0 commit comments