Skip to content
Open

Post #31

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
3254a97
'yalla2'
Shurshev Jan 12, 2018
96b02f2
'redux'
Shurshev Jan 13, 2018
ae31fec
initial structure
Shurshev Jan 13, 2018
9c5d26a
add initial stucture for project
Shurshev Jan 13, 2018
1c3784f
'initial-auth'
Shurshev Jan 19, 2018
45f8b49
add new api
Shurshev Jan 19, 2018
d4aa5cc
merge auth with master
bigcheeseh Jan 23, 2018
0960ef1
signin login pages
bigcheeseh Jan 25, 2018
a58dcf6
login register actions
bigcheeseh Jan 25, 2018
c4d4523
update gitignor
spone379 Jan 25, 2018
c652bb8
Add actions for login
spone379 Jan 25, 2018
8c0b9f6
add login & email verified
Shurshev Jan 25, 2018
a16fa11
log out
bigcheeseh Jan 26, 2018
1df6d4f
sign out log out
bigcheeseh Jan 26, 2018
f1391dd
password bag fix
bigcheeseh Jan 27, 2018
ba0d3e0
groups to array reducer helper
bigcheeseh Jan 27, 2018
006f89a
master
bigcheeseh Feb 3, 2018
d8934eb
auth with token
bigcheeseh Feb 17, 2018
6a8c90e
auth
bigcheeseh Feb 17, 2018
7ce543b
post initial
bigcheeseh Feb 17, 2018
ac9b1ff
post 12
bigcheeseh Feb 17, 2018
0caabca
post resolove conflicts
bigcheeseh Feb 17, 2018
f713cc2
post styles
bigcheeseh Feb 17, 2018
01d7364
p
bigcheeseh Feb 17, 2018
dacf309
add reduxform reducer
bigcheeseh Feb 17, 2018
d51b706
delete post event
bigcheeseh Feb 17, 2018
f980a9d
post editor
bigcheeseh Feb 19, 2018
df4e04e
routing bug
bigcheeseh Feb 19, 2018
6d73f81
comments
bigcheeseh Feb 20, 2018
7420a02
router bug fix
bigcheeseh Feb 20, 2018
cb6f6ad
route
bigcheeseh Feb 20, 2018
4ea5eaf
comment button
bigcheeseh Feb 20, 2018
9b22b1c
calendar
bigcheeseh Feb 21, 2018
dc1372e
calendar
bigcheeseh Feb 21, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "masa-projects-posts"
}
}
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# dependencies
/node_modules

/functions/node_modules
# testing
/coverage

Expand All @@ -19,3 +19,6 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*


package-lock.json
6 changes: 6 additions & 0 deletions database.rules.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"rules": {
".read": "true",
".write": "true"
}
}
19 changes: 19 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
8 changes: 8 additions & 0 deletions functions/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const functions = require('firebase-functions');

// // Create and Deploy Your First Cloud Functions
// // https://firebase.google.com/docs/functions/write-firebase-functions
//
// exports.helloWorld = functions.https.onRequest((request, response) => {
// response.send("Hello from Firebase!");
// });
16 changes: 16 additions & 0 deletions functions/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"scripts": {
"serve": "firebase serve --only functions",
"shell": "firebase experimental:functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"dependencies": {
"firebase-admin": "~5.8.1",
"firebase-functions": "^0.8.1"
},
"private": true
}
Loading