Skip to content

Commit cde09a9

Browse files
Add files via upload
ThinkSo is a Notion clone project. Project has functions such as new user login, calendar, adding notes, creating a joint note with another user, and allowing different users to update notes.
1 parent 709bd7f commit cde09a9

File tree

6 files changed

+990
-0
lines changed

6 files changed

+990
-0
lines changed

Projects/.DS_Store

6 KB
Binary file not shown.

Projects/.gitignore

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
firebase-debug.log*
8+
firebase-debug.*.log*
9+
10+
# Firebase cache
11+
.firebase/
12+
13+
# Firebase config
14+
.config/
15+
16+
# Uncomment this if you'd like others to create their own Firebase project.
17+
# For a team working on the same Firebase project(s), it is recommended to leave
18+
# it commented so all members can deploy to the same project(s) in .firebaserc.
19+
# .firebaserc
20+
21+
# Runtime data
22+
pids
23+
*.pid
24+
*.seed
25+
*.pid.lock
26+
27+
# Directory for instrumented libs generated by jscoverage/JSCover
28+
lib-cov
29+
30+
# Coverage directory used by tools like istanbul
31+
coverage
32+
33+
# nyc test coverage
34+
.nyc_output
35+
36+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
37+
.grunt
38+
39+
# Bower dependency directory (https://bower.io/)
40+
bower_components
41+
42+
# node-waf configuration
43+
.lock-wscript
44+
45+
# Compiled binary addons (http://nodejs.org/api/addons.html)
46+
build/Release
47+
48+
# Dependency directories
49+
node_modules/
50+
51+
# Optional npm cache directory
52+
.npm
53+
54+
# Optional eslint cache
55+
.eslintcache
56+
57+
# Optional REPL history
58+
.node_repl_history
59+
60+
# Output of 'npm pack'
61+
*.tgz
62+
63+
# Yarn Integrity file
64+
.yarn-integrity
65+
66+
# dotenv environment variables file
67+
.env

Projects/firebase.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"database": {
3+
"rules": "realtime-db-security-rules.json"
4+
}
5+
}

Projects/main.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from website import ThinkSo_app
2+
3+
app = ThinkSo_app.ThinkSo()
4+
5+
if __name__ == '__main__':
6+
app.run(debug=True)
7+
8+

0 commit comments

Comments
 (0)