Skip to content

Commit

Permalink
added background selection
Browse files Browse the repository at this point in the history
  • Loading branch information
ckolderup committed Dec 5, 2020
1 parent 67941af commit c8256dd
Show file tree
Hide file tree
Showing 84 changed files with 1,433 additions and 905 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
58 changes: 29 additions & 29 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
**/node_modules
/.pnp
.pnp.js

# testing
**/coverage

# production
**/build

# docker
docker-compose.override.yml

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

npm-debug.log*
yarn-debug.log*
yarn-error.log*

.rediscli_history
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
**/node_modules
/.pnp
.pnp.js

# testing
**/coverage

# production
**/build

# docker
docker-compose.override.yml

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

npm-debug.log*
yarn-debug.log*
yarn-error.log*

.rediscli_history
20 changes: 10 additions & 10 deletions .redis
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
dir /app/.data
appendonly yes
daemonize yes
dbfilename dump.rdb
maxmemory 400000000
maxmemory-policy noeviction
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
dir /app/.data
appendonly yes
daemonize yes

dbfilename dump.rdb
maxmemory 400000000
maxmemory-policy noeviction

auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
574 changes: 287 additions & 287 deletions client/.babel.json

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions client/.babelrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"presets": ["@babel/preset-env", "@babel/preset-react"]
}

{
"plugins": ["babel-plugin-styled-components"],
"presets": ["@babel/preset-env", "@babel/preset-react"]
}

3 changes: 3 additions & 0 deletions client/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"titleBar.inactiveForeground": "#000000CC",
"titleBar.activeBackground": "#FFC600",
"titleBar.inactiveBackground": "#FFC600CC"
},
"search.exclude": {
"**/bundle.js": true
}
}
103 changes: 103 additions & 0 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@
"@testing-library/user-event": "^7.2.1",
"http-proxy-middleware": "^1.0.6",
"react": "^16.14.0",
"react-color": "^2.19.3",
"react-dom": "^16.14.0",
"react-dropzone": "^11.2.2",
"react-flip-toolkit": "7.0.12",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.0",
"react-spinners": "^0.9.0",
"socket.io-client": "^2.3.0"
"socket.io-client": "^2.3.0",
"styled-components": "^5.2.1"
},
"scripts": {
"start": "react-scripts start",
Expand All @@ -30,5 +32,8 @@
"not dead",
"not ie <= 11",
"not op_mini all"
]
],
"devDependencies": {
"babel-plugin-styled-components": "^1.11.1"
}
}
1 change: 1 addition & 0 deletions client/public/hero-patterns/4-point-stars.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions client/public/hero-patterns/_blank.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions client/public/hero-patterns/anchors-away.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions client/public/hero-patterns/autumn.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions client/public/hero-patterns/aztec.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions client/public/hero-patterns/bamboo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions client/public/hero-patterns/bank-note.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions client/public/hero-patterns/bathroom-floor.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions client/public/hero-patterns/brick-wall.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions client/public/hero-patterns/bubbles.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit c8256dd

Please sign in to comment.