Skip to content
This repository has been archived by the owner on Apr 26, 2022. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
georgiecel committed Mar 29, 2018
0 parents commit 5bcd85b
Show file tree
Hide file tree
Showing 15 changed files with 8,629 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .gitignore
@@ -0,0 +1,21 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
9 changes: 9 additions & 0 deletions README.md
@@ -0,0 +1,9 @@
This repository contains a React app built from a json file that I created. The json file is more or less an inventory of my wardrobe. I’m big on fashion but also big on minimalism, and after many years of using Wunderlist to catalogue my clothing, decided that maybe it would be more fun creating something myself.

I’ve downsized my wardrobe by a large amount over the years. It’s worth noting that I’ve donated over 60 standard bags (about 20 large garbage bags) of clothing since 2014, and that I was never able to complete my catalogue because of the sheer amount of clothing I owned. I estimate it must have been over 500 items at one point. Many items of clothing were purged before I could even get a chance to add them to my catalogue.

Now at 96 items (~~and counting~~ and downsizing), I hope to maintain a full inventory through creating this app. Ultimately, this is an exercise for myself to learn more about JavaScript and React, after avoiding JavaScript like the plague for many years of my career as a front-end developer.

This project uses [Create React App](https://github.com/facebookincubator/create-react-app).

A small note that I don’t count shoes, underwear, socks, and workout gear in my inventory. And no, I’m not one of those women with 100 pairs of shoes.
16 changes: 16 additions & 0 deletions package.json
@@ -0,0 +1,16 @@
{
"name": "wardrobe",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "1.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}
Binary file added public/favicon.ico
Binary file not shown.
40 changes: 40 additions & 0 deletions public/index.html
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<!--
manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
15 changes: 15 additions & 0 deletions public/manifest.json
@@ -0,0 +1,15 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
}
],
"start_url": "./index.html",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}

0 comments on commit 5bcd85b

Please sign in to comment.