├── .dockerignore ├── .env.example ├── .flaskenv ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE.txt ├── Pipfile ├── Pipfile.lock ├── README.md ├── app ├── __init__.py ├── api │ ├── __init__.py │ ├── auth_routes.py │ ├── comment_routes.py │ ├── hashtag_routes.py │ ├── image_routes.py │ ├── post_routes.py │ └── user_routes.py ├── config.py ├── forms │ ├── __init__.py │ ├── login_form.py │ └── signup_form.py ├── helpers.py ├── models │ ├── __init__.py │ ├── album.py │ ├── category.py │ ├── comment.py │ ├── commentlike.py │ ├── commenttaggeduser.py │ ├── db.py │ ├── directmessage.py │ ├── equipment.py │ ├── hashtag.py │ ├── hashtagpost.py │ ├── likedpost.py │ ├── location.py │ ├── media.py │ ├── message.py │ ├── messagereceiver.py │ ├── messagetaggeduser.py │ ├── post.py │ ├── savedpost.py │ ├── subcategory.py │ ├── taggeduser.py │ ├── user.py │ ├── userequipment.py │ └── userfollower.py └── seeds │ ├── __init__.py │ ├── addresses-us-all.json │ ├── album.py │ ├── category.py │ ├── data.py │ ├── equipment.py │ ├── likedposts.py │ ├── locations.py │ ├── media.py │ ├── posts.py │ ├── savedposts.py │ ├── sqlupdate.txt │ ├── testcode.py │ ├── userfollowers.py │ └── users.py ├── dev-requirements.txt ├── elect ├── messenger_server ├── .env.example ├── .gitignore ├── .sequelizerc ├── README.md ├── app.js ├── config.js ├── config │ ├── database.js │ └── index.js ├── db │ └── models │ │ ├── index.js │ │ ├── message.js │ │ └── user.js ├── messageSession-state.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── test.js └── test2.js ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── b8d49a3ac8a4_.py │ └── e0a3693c3822_.py ├── notes.txt ├── react-app ├── .env.example ├── .gitignore ├── README.md ├── bug " ├── debug.log ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── images │ │ ├── InstaVibes2.png │ │ ├── comment.png │ │ ├── computer.png │ │ ├── favicon_io.zip │ │ ├── favicon_io │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ └── site.webmanifest │ │ ├── phone.jpg │ │ ├── phone2.png │ │ ├── test.png │ │ └── test2.jpg │ └── index.html └── src │ ├── App.js │ ├── components │ ├── AAAMainComponents │ │ ├── Bands │ │ │ ├── .index.js.swp │ │ │ ├── Bands.css │ │ │ └── index.js │ │ ├── SingleCard │ │ │ ├── SingleCard.css │ │ │ └── index.js │ │ └── ThreeJS │ │ │ ├── Effects.js │ │ │ ├── Text.js │ │ │ ├── ThreeJS.css │ │ │ ├── index.js │ │ │ └── index_flamingo.js │ ├── AAPopups │ │ └── Modals │ │ │ ├── Modals.css │ │ │ └── index.js │ ├── About │ │ ├── About.css │ │ └── index.js │ ├── Comment │ │ ├── .index.js.swp │ │ ├── Comment.css │ │ └── index.js │ ├── CommentInput │ │ ├── CommentInput.css │ │ └── index.js │ ├── ExploreFeed │ │ ├── ExploreFeed.css │ │ └── index.js │ ├── ExplorePage │ │ ├── ExplorePage.css │ │ └── index.js │ ├── Feed │ │ ├── feed.css │ │ └── index.js │ ├── GoogleMaps │ │ └── index.js │ ├── HashtagFeed │ │ ├── HashtagFeed.css │ │ └── index.js │ ├── HashtagPage │ │ ├── HashtagPage.css │ │ └── index.js │ ├── MessagePage │ │ ├── .index.js.swp │ │ ├── MessagePage.css │ │ └── index.js │ ├── MiniProfile │ │ ├── MiniProfile.css │ │ └── index.js │ ├── NavBar │ │ ├── NavBar.css │ │ └── index.js │ ├── NewPost │ │ ├── NewPost.css │ │ ├── dropicon.svg │ │ └── index.js │ ├── NewPostModal │ │ ├── NewPostModal.css │ │ └── index.js │ ├── NewPostModalNav │ │ ├── NewPostModalNav.css │ │ └── index.js │ ├── NewPostTab │ │ ├── NewPostTab.css │ │ └── index.js │ ├── Notification │ │ ├── Notification.css │ │ └── index.js │ ├── NotificationCenter │ │ ├── NotificationCenter.css │ │ └── index.js │ ├── PicModal │ │ ├── PicModal.css │ │ └── index.js │ ├── PicModalCaption │ │ ├── PicModalCaption.css │ │ └── index.js │ ├── Post │ │ ├── index.js │ │ └── post.css │ ├── ProfileFeed │ │ ├── ProfileFeed.css │ │ └── index.js │ ├── ProfilePage │ │ ├── Equipment.js │ │ ├── ProfilePage.css │ │ ├── UserRow.js │ │ └── index.js │ ├── ProfilePost │ │ ├── .index.js.swp │ │ ├── ProfilePost.css │ │ └── index.js │ ├── ProfilePostsNav │ │ ├── ProfilePostsNav.css │ │ └── index.js │ ├── Search │ │ ├── .index.js.swp │ │ ├── Search.css │ │ └── index.js │ ├── SinglePostPage │ │ ├── SinglePostPage.css │ │ └── index.js │ ├── Story │ │ ├── Story.css │ │ └── index.js │ ├── Suggestions │ │ ├── index.js │ │ └── suggestions.css │ ├── UserLists │ │ ├── UserList.js │ │ ├── UserLists.css │ │ └── index.js │ ├── auth │ │ ├── .ChangePasswordForm.js.swp │ │ ├── ChangePasswordForm.js │ │ ├── LoginForm.css │ │ ├── LoginForm.js │ │ ├── LogoutButton.js │ │ ├── ProtectedRoute.js │ │ ├── SignUpForm.css │ │ └── SignUpForm.js │ ├── footer │ │ ├── Footer.js │ │ ├── footer.css │ │ └── master.css │ └── utils │ │ ├── index.js │ │ └── styles.module.css │ ├── index.css │ ├── index.js │ ├── pictures │ ├── dronestlogo.png │ ├── dronestlogo2.png │ ├── dronestlogo3.png │ ├── for_favicon1.png │ ├── html5.png │ ├── python.png │ └── signuppicture1.jpg │ ├── services │ └── auth.js │ └── store │ ├── darkmode.js │ ├── follow.js │ ├── index.js │ ├── mentions.js │ ├── messages.js │ ├── notifications.js │ ├── posts.js │ ├── profile.js │ ├── search.js │ ├── session.js │ └── users.js ├── requirements.txt └── resources ├── Untitled Diagram.drawio ├── drawSQL-export-2021-02-02_17_26.png └── screenshots ├── codesnippet1.png ├── codesnippet2.png ├── codesnippet3.png ├── codesnippet4.png ├── follower-following.png ├── home-darkmode.png ├── home.png ├── instantmessage.png ├── newpost.png ├── profilepage.png └── stories.png /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/.env.example -------------------------------------------------------------------------------- /.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_APP=app -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | *.py[cod] 4 | .venv 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/api/__init__.py -------------------------------------------------------------------------------- /app/api/auth_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/api/auth_routes.py -------------------------------------------------------------------------------- /app/api/comment_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/api/comment_routes.py -------------------------------------------------------------------------------- /app/api/hashtag_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/api/hashtag_routes.py -------------------------------------------------------------------------------- /app/api/image_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/api/image_routes.py -------------------------------------------------------------------------------- /app/api/post_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/api/post_routes.py -------------------------------------------------------------------------------- /app/api/user_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/api/user_routes.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/config.py -------------------------------------------------------------------------------- /app/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/forms/__init__.py -------------------------------------------------------------------------------- /app/forms/login_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/forms/login_form.py -------------------------------------------------------------------------------- /app/forms/signup_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/forms/signup_form.py -------------------------------------------------------------------------------- /app/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/helpers.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/__init__.py -------------------------------------------------------------------------------- /app/models/album.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/album.py -------------------------------------------------------------------------------- /app/models/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/category.py -------------------------------------------------------------------------------- /app/models/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/comment.py -------------------------------------------------------------------------------- /app/models/commentlike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/commentlike.py -------------------------------------------------------------------------------- /app/models/commenttaggeduser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/commenttaggeduser.py -------------------------------------------------------------------------------- /app/models/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/db.py -------------------------------------------------------------------------------- /app/models/directmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/directmessage.py -------------------------------------------------------------------------------- /app/models/equipment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/equipment.py -------------------------------------------------------------------------------- /app/models/hashtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/hashtag.py -------------------------------------------------------------------------------- /app/models/hashtagpost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/hashtagpost.py -------------------------------------------------------------------------------- /app/models/likedpost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/likedpost.py -------------------------------------------------------------------------------- /app/models/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/location.py -------------------------------------------------------------------------------- /app/models/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/media.py -------------------------------------------------------------------------------- /app/models/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/message.py -------------------------------------------------------------------------------- /app/models/messagereceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/messagereceiver.py -------------------------------------------------------------------------------- /app/models/messagetaggeduser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/messagetaggeduser.py -------------------------------------------------------------------------------- /app/models/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/post.py -------------------------------------------------------------------------------- /app/models/savedpost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/savedpost.py -------------------------------------------------------------------------------- /app/models/subcategory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/subcategory.py -------------------------------------------------------------------------------- /app/models/taggeduser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/taggeduser.py -------------------------------------------------------------------------------- /app/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/user.py -------------------------------------------------------------------------------- /app/models/userequipment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/userequipment.py -------------------------------------------------------------------------------- /app/models/userfollower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/models/userfollower.py -------------------------------------------------------------------------------- /app/seeds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/__init__.py -------------------------------------------------------------------------------- /app/seeds/addresses-us-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/addresses-us-all.json -------------------------------------------------------------------------------- /app/seeds/album.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/album.py -------------------------------------------------------------------------------- /app/seeds/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/category.py -------------------------------------------------------------------------------- /app/seeds/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/data.py -------------------------------------------------------------------------------- /app/seeds/equipment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/equipment.py -------------------------------------------------------------------------------- /app/seeds/likedposts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/likedposts.py -------------------------------------------------------------------------------- /app/seeds/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/locations.py -------------------------------------------------------------------------------- /app/seeds/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/media.py -------------------------------------------------------------------------------- /app/seeds/posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/posts.py -------------------------------------------------------------------------------- /app/seeds/savedposts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/savedposts.py -------------------------------------------------------------------------------- /app/seeds/sqlupdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/sqlupdate.txt -------------------------------------------------------------------------------- /app/seeds/testcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/testcode.py -------------------------------------------------------------------------------- /app/seeds/userfollowers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/userfollowers.py -------------------------------------------------------------------------------- /app/seeds/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/app/seeds/users.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | psycopg2-binary==2.8.6 2 | -------------------------------------------------------------------------------- /elect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/elect -------------------------------------------------------------------------------- /messenger_server/.env.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messenger_server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/.gitignore -------------------------------------------------------------------------------- /messenger_server/.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/.sequelizerc -------------------------------------------------------------------------------- /messenger_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/README.md -------------------------------------------------------------------------------- /messenger_server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/app.js -------------------------------------------------------------------------------- /messenger_server/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/config.js -------------------------------------------------------------------------------- /messenger_server/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/config/database.js -------------------------------------------------------------------------------- /messenger_server/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/config/index.js -------------------------------------------------------------------------------- /messenger_server/db/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/db/models/index.js -------------------------------------------------------------------------------- /messenger_server/db/models/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/db/models/message.js -------------------------------------------------------------------------------- /messenger_server/db/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/db/models/user.js -------------------------------------------------------------------------------- /messenger_server/messageSession-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/messageSession-state.js -------------------------------------------------------------------------------- /messenger_server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/package-lock.json -------------------------------------------------------------------------------- /messenger_server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/package.json -------------------------------------------------------------------------------- /messenger_server/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/public/favicon.ico -------------------------------------------------------------------------------- /messenger_server/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/public/index.html -------------------------------------------------------------------------------- /messenger_server/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/test.js -------------------------------------------------------------------------------- /messenger_server/test2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/messenger_server/test2.js -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/b8d49a3ac8a4_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/migrations/versions/b8d49a3ac8a4_.py -------------------------------------------------------------------------------- /migrations/versions/e0a3693c3822_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/migrations/versions/e0a3693c3822_.py -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/notes.txt -------------------------------------------------------------------------------- /react-app/.env.example: -------------------------------------------------------------------------------- 1 | REACT_APP_BASE_URL=http://localhost:5000 2 | -------------------------------------------------------------------------------- /react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/.gitignore -------------------------------------------------------------------------------- /react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/README.md -------------------------------------------------------------------------------- /react-app/bug " : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-app/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/debug.log -------------------------------------------------------------------------------- /react-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/package-lock.json -------------------------------------------------------------------------------- /react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/package.json -------------------------------------------------------------------------------- /react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/favicon.ico -------------------------------------------------------------------------------- /react-app/public/images/InstaVibes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/InstaVibes2.png -------------------------------------------------------------------------------- /react-app/public/images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/comment.png -------------------------------------------------------------------------------- /react-app/public/images/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/computer.png -------------------------------------------------------------------------------- /react-app/public/images/favicon_io.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/favicon_io.zip -------------------------------------------------------------------------------- /react-app/public/images/favicon_io/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/favicon_io/android-chrome-192x192.png -------------------------------------------------------------------------------- /react-app/public/images/favicon_io/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/favicon_io/android-chrome-512x512.png -------------------------------------------------------------------------------- /react-app/public/images/favicon_io/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/favicon_io/apple-touch-icon.png -------------------------------------------------------------------------------- /react-app/public/images/favicon_io/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/favicon_io/favicon-16x16.png -------------------------------------------------------------------------------- /react-app/public/images/favicon_io/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/favicon_io/favicon-32x32.png -------------------------------------------------------------------------------- /react-app/public/images/favicon_io/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/favicon_io/favicon.ico -------------------------------------------------------------------------------- /react-app/public/images/favicon_io/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/favicon_io/site.webmanifest -------------------------------------------------------------------------------- /react-app/public/images/phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/phone.jpg -------------------------------------------------------------------------------- /react-app/public/images/phone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/phone2.png -------------------------------------------------------------------------------- /react-app/public/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/test.png -------------------------------------------------------------------------------- /react-app/public/images/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/images/test2.jpg -------------------------------------------------------------------------------- /react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/public/index.html -------------------------------------------------------------------------------- /react-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/App.js -------------------------------------------------------------------------------- /react-app/src/components/AAAMainComponents/Bands/.index.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAAMainComponents/Bands/.index.js.swp -------------------------------------------------------------------------------- /react-app/src/components/AAAMainComponents/Bands/Bands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAAMainComponents/Bands/Bands.css -------------------------------------------------------------------------------- /react-app/src/components/AAAMainComponents/Bands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAAMainComponents/Bands/index.js -------------------------------------------------------------------------------- /react-app/src/components/AAAMainComponents/SingleCard/SingleCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAAMainComponents/SingleCard/SingleCard.css -------------------------------------------------------------------------------- /react-app/src/components/AAAMainComponents/SingleCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAAMainComponents/SingleCard/index.js -------------------------------------------------------------------------------- /react-app/src/components/AAAMainComponents/ThreeJS/Effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAAMainComponents/ThreeJS/Effects.js -------------------------------------------------------------------------------- /react-app/src/components/AAAMainComponents/ThreeJS/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAAMainComponents/ThreeJS/Text.js -------------------------------------------------------------------------------- /react-app/src/components/AAAMainComponents/ThreeJS/ThreeJS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAAMainComponents/ThreeJS/ThreeJS.css -------------------------------------------------------------------------------- /react-app/src/components/AAAMainComponents/ThreeJS/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAAMainComponents/ThreeJS/index.js -------------------------------------------------------------------------------- /react-app/src/components/AAAMainComponents/ThreeJS/index_flamingo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAAMainComponents/ThreeJS/index_flamingo.js -------------------------------------------------------------------------------- /react-app/src/components/AAPopups/Modals/Modals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAPopups/Modals/Modals.css -------------------------------------------------------------------------------- /react-app/src/components/AAPopups/Modals/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/AAPopups/Modals/index.js -------------------------------------------------------------------------------- /react-app/src/components/About/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/About/About.css -------------------------------------------------------------------------------- /react-app/src/components/About/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/About/index.js -------------------------------------------------------------------------------- /react-app/src/components/Comment/.index.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Comment/.index.js.swp -------------------------------------------------------------------------------- /react-app/src/components/Comment/Comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Comment/Comment.css -------------------------------------------------------------------------------- /react-app/src/components/Comment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Comment/index.js -------------------------------------------------------------------------------- /react-app/src/components/CommentInput/CommentInput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/CommentInput/CommentInput.css -------------------------------------------------------------------------------- /react-app/src/components/CommentInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/CommentInput/index.js -------------------------------------------------------------------------------- /react-app/src/components/ExploreFeed/ExploreFeed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ExploreFeed/ExploreFeed.css -------------------------------------------------------------------------------- /react-app/src/components/ExploreFeed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ExploreFeed/index.js -------------------------------------------------------------------------------- /react-app/src/components/ExplorePage/ExplorePage.css: -------------------------------------------------------------------------------- 1 | .explore-page { 2 | margin-top: 40px; 3 | } 4 | -------------------------------------------------------------------------------- /react-app/src/components/ExplorePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ExplorePage/index.js -------------------------------------------------------------------------------- /react-app/src/components/Feed/feed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Feed/feed.css -------------------------------------------------------------------------------- /react-app/src/components/Feed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Feed/index.js -------------------------------------------------------------------------------- /react-app/src/components/GoogleMaps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/GoogleMaps/index.js -------------------------------------------------------------------------------- /react-app/src/components/HashtagFeed/HashtagFeed.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /react-app/src/components/HashtagFeed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/HashtagFeed/index.js -------------------------------------------------------------------------------- /react-app/src/components/HashtagPage/HashtagPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/HashtagPage/HashtagPage.css -------------------------------------------------------------------------------- /react-app/src/components/HashtagPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/HashtagPage/index.js -------------------------------------------------------------------------------- /react-app/src/components/MessagePage/.index.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/MessagePage/.index.js.swp -------------------------------------------------------------------------------- /react-app/src/components/MessagePage/MessagePage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/MessagePage/MessagePage.css -------------------------------------------------------------------------------- /react-app/src/components/MessagePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/MessagePage/index.js -------------------------------------------------------------------------------- /react-app/src/components/MiniProfile/MiniProfile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/MiniProfile/MiniProfile.css -------------------------------------------------------------------------------- /react-app/src/components/MiniProfile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/MiniProfile/index.js -------------------------------------------------------------------------------- /react-app/src/components/NavBar/NavBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NavBar/NavBar.css -------------------------------------------------------------------------------- /react-app/src/components/NavBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NavBar/index.js -------------------------------------------------------------------------------- /react-app/src/components/NewPost/NewPost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NewPost/NewPost.css -------------------------------------------------------------------------------- /react-app/src/components/NewPost/dropicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NewPost/dropicon.svg -------------------------------------------------------------------------------- /react-app/src/components/NewPost/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NewPost/index.js -------------------------------------------------------------------------------- /react-app/src/components/NewPostModal/NewPostModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NewPostModal/NewPostModal.css -------------------------------------------------------------------------------- /react-app/src/components/NewPostModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NewPostModal/index.js -------------------------------------------------------------------------------- /react-app/src/components/NewPostModalNav/NewPostModalNav.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-app/src/components/NewPostModalNav/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NewPostModalNav/index.js -------------------------------------------------------------------------------- /react-app/src/components/NewPostTab/NewPostTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NewPostTab/NewPostTab.css -------------------------------------------------------------------------------- /react-app/src/components/NewPostTab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NewPostTab/index.js -------------------------------------------------------------------------------- /react-app/src/components/Notification/Notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Notification/Notification.css -------------------------------------------------------------------------------- /react-app/src/components/Notification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Notification/index.js -------------------------------------------------------------------------------- /react-app/src/components/NotificationCenter/NotificationCenter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NotificationCenter/NotificationCenter.css -------------------------------------------------------------------------------- /react-app/src/components/NotificationCenter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/NotificationCenter/index.js -------------------------------------------------------------------------------- /react-app/src/components/PicModal/PicModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/PicModal/PicModal.css -------------------------------------------------------------------------------- /react-app/src/components/PicModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/PicModal/index.js -------------------------------------------------------------------------------- /react-app/src/components/PicModalCaption/PicModalCaption.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-app/src/components/PicModalCaption/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/PicModalCaption/index.js -------------------------------------------------------------------------------- /react-app/src/components/Post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Post/index.js -------------------------------------------------------------------------------- /react-app/src/components/Post/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Post/post.css -------------------------------------------------------------------------------- /react-app/src/components/ProfileFeed/ProfileFeed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfileFeed/ProfileFeed.css -------------------------------------------------------------------------------- /react-app/src/components/ProfileFeed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfileFeed/index.js -------------------------------------------------------------------------------- /react-app/src/components/ProfilePage/Equipment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfilePage/Equipment.js -------------------------------------------------------------------------------- /react-app/src/components/ProfilePage/ProfilePage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfilePage/ProfilePage.css -------------------------------------------------------------------------------- /react-app/src/components/ProfilePage/UserRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfilePage/UserRow.js -------------------------------------------------------------------------------- /react-app/src/components/ProfilePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfilePage/index.js -------------------------------------------------------------------------------- /react-app/src/components/ProfilePost/.index.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfilePost/.index.js.swp -------------------------------------------------------------------------------- /react-app/src/components/ProfilePost/ProfilePost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfilePost/ProfilePost.css -------------------------------------------------------------------------------- /react-app/src/components/ProfilePost/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfilePost/index.js -------------------------------------------------------------------------------- /react-app/src/components/ProfilePostsNav/ProfilePostsNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfilePostsNav/ProfilePostsNav.css -------------------------------------------------------------------------------- /react-app/src/components/ProfilePostsNav/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/ProfilePostsNav/index.js -------------------------------------------------------------------------------- /react-app/src/components/Search/.index.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Search/.index.js.swp -------------------------------------------------------------------------------- /react-app/src/components/Search/Search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Search/Search.css -------------------------------------------------------------------------------- /react-app/src/components/Search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Search/index.js -------------------------------------------------------------------------------- /react-app/src/components/SinglePostPage/SinglePostPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/SinglePostPage/SinglePostPage.css -------------------------------------------------------------------------------- /react-app/src/components/SinglePostPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/SinglePostPage/index.js -------------------------------------------------------------------------------- /react-app/src/components/Story/Story.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Story/Story.css -------------------------------------------------------------------------------- /react-app/src/components/Story/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Story/index.js -------------------------------------------------------------------------------- /react-app/src/components/Suggestions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Suggestions/index.js -------------------------------------------------------------------------------- /react-app/src/components/Suggestions/suggestions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/Suggestions/suggestions.css -------------------------------------------------------------------------------- /react-app/src/components/UserLists/UserList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/UserLists/UserList.js -------------------------------------------------------------------------------- /react-app/src/components/UserLists/UserLists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/UserLists/UserLists.css -------------------------------------------------------------------------------- /react-app/src/components/UserLists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/UserLists/index.js -------------------------------------------------------------------------------- /react-app/src/components/auth/.ChangePasswordForm.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/auth/.ChangePasswordForm.js.swp -------------------------------------------------------------------------------- /react-app/src/components/auth/ChangePasswordForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/auth/ChangePasswordForm.js -------------------------------------------------------------------------------- /react-app/src/components/auth/LoginForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/auth/LoginForm.css -------------------------------------------------------------------------------- /react-app/src/components/auth/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/auth/LoginForm.js -------------------------------------------------------------------------------- /react-app/src/components/auth/LogoutButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/auth/LogoutButton.js -------------------------------------------------------------------------------- /react-app/src/components/auth/ProtectedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/auth/ProtectedRoute.js -------------------------------------------------------------------------------- /react-app/src/components/auth/SignUpForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/auth/SignUpForm.css -------------------------------------------------------------------------------- /react-app/src/components/auth/SignUpForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/auth/SignUpForm.js -------------------------------------------------------------------------------- /react-app/src/components/footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/footer/Footer.js -------------------------------------------------------------------------------- /react-app/src/components/footer/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/footer/footer.css -------------------------------------------------------------------------------- /react-app/src/components/footer/master.css: -------------------------------------------------------------------------------- 1 | /* #6a2c70, 2 | #b83b5e); */ 3 | -------------------------------------------------------------------------------- /react-app/src/components/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/utils/index.js -------------------------------------------------------------------------------- /react-app/src/components/utils/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/components/utils/styles.module.css -------------------------------------------------------------------------------- /react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/index.css -------------------------------------------------------------------------------- /react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/index.js -------------------------------------------------------------------------------- /react-app/src/pictures/dronestlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/pictures/dronestlogo.png -------------------------------------------------------------------------------- /react-app/src/pictures/dronestlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/pictures/dronestlogo2.png -------------------------------------------------------------------------------- /react-app/src/pictures/dronestlogo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/pictures/dronestlogo3.png -------------------------------------------------------------------------------- /react-app/src/pictures/for_favicon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/pictures/for_favicon1.png -------------------------------------------------------------------------------- /react-app/src/pictures/html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/pictures/html5.png -------------------------------------------------------------------------------- /react-app/src/pictures/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/pictures/python.png -------------------------------------------------------------------------------- /react-app/src/pictures/signuppicture1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/pictures/signuppicture1.jpg -------------------------------------------------------------------------------- /react-app/src/services/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/services/auth.js -------------------------------------------------------------------------------- /react-app/src/store/darkmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/darkmode.js -------------------------------------------------------------------------------- /react-app/src/store/follow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/follow.js -------------------------------------------------------------------------------- /react-app/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/index.js -------------------------------------------------------------------------------- /react-app/src/store/mentions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/mentions.js -------------------------------------------------------------------------------- /react-app/src/store/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/messages.js -------------------------------------------------------------------------------- /react-app/src/store/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/notifications.js -------------------------------------------------------------------------------- /react-app/src/store/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/posts.js -------------------------------------------------------------------------------- /react-app/src/store/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/profile.js -------------------------------------------------------------------------------- /react-app/src/store/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/search.js -------------------------------------------------------------------------------- /react-app/src/store/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/session.js -------------------------------------------------------------------------------- /react-app/src/store/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/react-app/src/store/users.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/Untitled Diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/Untitled Diagram.drawio -------------------------------------------------------------------------------- /resources/drawSQL-export-2021-02-02_17_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/drawSQL-export-2021-02-02_17_26.png -------------------------------------------------------------------------------- /resources/screenshots/codesnippet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/codesnippet1.png -------------------------------------------------------------------------------- /resources/screenshots/codesnippet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/codesnippet2.png -------------------------------------------------------------------------------- /resources/screenshots/codesnippet3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/codesnippet3.png -------------------------------------------------------------------------------- /resources/screenshots/codesnippet4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/codesnippet4.png -------------------------------------------------------------------------------- /resources/screenshots/follower-following.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/follower-following.png -------------------------------------------------------------------------------- /resources/screenshots/home-darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/home-darkmode.png -------------------------------------------------------------------------------- /resources/screenshots/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/home.png -------------------------------------------------------------------------------- /resources/screenshots/instantmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/instantmessage.png -------------------------------------------------------------------------------- /resources/screenshots/newpost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/newpost.png -------------------------------------------------------------------------------- /resources/screenshots/profilepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/profilepage.png -------------------------------------------------------------------------------- /resources/screenshots/stories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyngophd/dronest/HEAD/resources/screenshots/stories.png --------------------------------------------------------------------------------