Compare commits
No commits in common. "master" and "front" have entirely different histories.
|
|
@ -70,7 +70,7 @@ yarn-error.log
|
||||||
.yarn-integrity
|
.yarn-integrity
|
||||||
|
|
||||||
# project assets
|
# project assets
|
||||||
# *.png
|
*.png
|
||||||
*.jpg
|
*.jpg
|
||||||
*.mp4
|
*.mp4
|
||||||
|
|
||||||
|
|
|
||||||
12
DockerFile
12
DockerFile
|
|
@ -1,12 +0,0 @@
|
||||||
FROM node:15.0.1
|
|
||||||
|
|
||||||
RUN npm install gatsby-cli
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
RUN npm install
|
|
||||||
|
|
||||||
EXPOSE 8000
|
|
||||||
|
|
||||||
CMD["sysctl", "fs.inotify.max_user_watches=524288" ]
|
|
||||||
CMD["gatsby", "develop"]
|
|
||||||
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 396 B |
|
|
@ -4,8 +4,10 @@ import movementsReducer from './movements/duck'
|
||||||
import commentReducer from './comments/duck'
|
import commentReducer from './comments/duck'
|
||||||
import subjectReducer from './subjects/duck'
|
import subjectReducer from './subjects/duck'
|
||||||
import threadReducer from './threads/duck'
|
import threadReducer from './threads/duck'
|
||||||
|
|
||||||
import userReducer from './user/duck'
|
import userReducer from './user/duck'
|
||||||
import chatReducer from './chat/duck'
|
import chatReducer from './chat/duck'
|
||||||
|
|
||||||
import exchangeReducer from './exchange/duck'
|
import exchangeReducer from './exchange/duck'
|
||||||
|
|
||||||
const rootReducer = combineReducers({
|
const rootReducer = combineReducers({
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue