add required images
parent
71665b652c
commit
d2a5c6835f
|
|
@ -70,7 +70,7 @@ yarn-error.log
|
|||
.yarn-integrity
|
||||
|
||||
# project assets
|
||||
*.png
|
||||
# *.png
|
||||
*.jpg
|
||||
*.mp4
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
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.
|
After Width: | Height: | Size: 396 B |
|
|
@ -4,10 +4,8 @@ import movementsReducer from './movements/duck'
|
|||
import commentReducer from './comments/duck'
|
||||
import subjectReducer from './subjects/duck'
|
||||
import threadReducer from './threads/duck'
|
||||
|
||||
import userReducer from './user/duck'
|
||||
import chatReducer from './chat/duck'
|
||||
|
||||
import exchangeReducer from './exchange/duck'
|
||||
|
||||
const rootReducer = combineReducers({
|
||||
|
|
|
|||
Loading…
Reference in New Issue