https://github.com/maciejkopecpl/cms-ui
My personal simple portfolio static site built with Gatsby
https://github.com/maciejkopecpl/cms-ui
gatsby googlemaps netlify react recaptcha
Last synced: about 2 months ago
JSON representation
My personal simple portfolio static site built with Gatsby
- Host: GitHub
- URL: https://github.com/maciejkopecpl/cms-ui
- Owner: maciejkopecpl
- License: mit
- Created: 2020-05-24T00:41:34.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-10-07T13:46:20.000Z (5 months ago)
- Last Synced: 2025-10-07T15:31:10.667Z (5 months ago)
- Topics: gatsby, googlemaps, netlify, react, recaptcha
- Language: JavaScript
- Homepage: https://maciejkopec.pl
- Size: 1.64 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
maciejkopec.pl
Hobby project to explore Gatsby's capabilities. My personal simple portfolio static site built with Gatsby
Feel free to use any part from this repository.
## π Quick start
1. **Clone.**
Clone this repository.
```git
git clone https://github.com/maciejkopecpl/cms-ui.git
```
1. **Build.**
Build the application.
```shell
cd cms-ui/
yarn install
```
1. **Run**
Now you should be able to run the application.
```shell
gatsby develop
```
## π§ What's inside?
A quick look at the top-level files and directories.
.
βββ src
βββ .babelrc
βββ .gitignore
βββ .prettierignore
βββ .prettierrc
βββ LICENSE
βββ README.md
βββ empty.env
βββ gatsby-config.js
βββ gatsby-node.js
βββ package-lock.json
βββ package.json
1. **`/src`**: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. `src` is a convention for βsource codeβ.
2. **`.babelrc`**: This file contains configuration of Babel
3. **`.gitignore`**: This file tells git which files it should not track / not maintain a version history for.
4. **`.prettierignore`**: This file tels prettier which files it should ignore.
5. **`.prettierrc`**: This is a configuration file for [Prettier](https://prettier.io/). Prettier is a tool to help keep the formatting of your code consistent.
6. **`LICENSE`**: This project is licensed under the MIT license.
7. **`README.md`**: A text file containing useful reference information about your project.
8. **`empty.env`**: A empty file containing all requires enviroment variables.
9. **`gatsby-config.js`**: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins youβd like to include, etc. (Check out the [config docs](https://www.gatsbyjs.org/docs/gatsby-config/) for more detail).
10. **`gatsby-node.js`**: This file is where Gatsby expects to find any usage of the [Gatsby Node APIs](https://www.gatsbyjs.org/docs/node-apis/) (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process.
11. **`package-lock.json`** (See `package.json` below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. **(You wonβt change this file directly).**
12. **`package.json`**: A manifest file for Node.js projects, which includes things like metadata (the projectβs name, author, etc). This manifest is how npm knows which packages to install for your project.
## ποΈ Backend
The backend services required by this application are available in this [CMS Backend](https://github.com/maciejkopecpl/cms).
## π¨ββοΈ License
[MIT](LICENSE)