├── .DS_Store ├── .gitignore ├── client ├── .bundle │ └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── Navigations │ ├── Auth.tsx │ ├── Main.tsx │ └── Tabs.tsx ├── README.md ├── __tests__ │ └── App.test.tsx ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── becodemy │ │ │ │ └── ReactNativeFlipper.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── becodemy │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── release │ │ │ └── java │ │ │ └── com │ │ │ └── becodemy │ │ │ └── ReactNativeFlipper.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── Becodemy.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Becodemy.xcscheme │ ├── Becodemy.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Becodemy │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── BecodemyTests │ │ ├── BecodemyTests.m │ │ └── Info.plist │ ├── Podfile │ └── Podfile.lock ├── jest.config.js ├── metro.config.js ├── my-app.d.ts ├── package-lock.json ├── package.json ├── src │ └── screens │ │ ├── HomeScreen.tsx │ │ ├── LoginScreen.tsx │ │ ├── SearchScreen.tsx │ │ └── SignupScreen.tsx ├── tailwind.config.js ├── tsconfig.json └── yarn.lock └── server ├── .DS_Store ├── .env ├── app.js ├── controllers ├── post.js └── user.js ├── db └── db.js ├── middleware ├── auth.js ├── catchAsyncErrors.js └── error.js ├── models ├── PostModel.js └── UserModel.js ├── package-lock.json ├── package.json ├── routes └── user.js ├── server.js └── utils ├── ErrorHandler.js └── jwtToken.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/.gitignore -------------------------------------------------------------------------------- /client/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/.bundle/config -------------------------------------------------------------------------------- /client/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/.prettierrc.js -------------------------------------------------------------------------------- /client/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /client/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/App.tsx -------------------------------------------------------------------------------- /client/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/Gemfile -------------------------------------------------------------------------------- /client/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/Gemfile.lock -------------------------------------------------------------------------------- /client/Navigations/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/Navigations/Auth.tsx -------------------------------------------------------------------------------- /client/Navigations/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/Navigations/Main.tsx -------------------------------------------------------------------------------- /client/Navigations/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/Navigations/Tabs.tsx -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/README.md -------------------------------------------------------------------------------- /client/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/__tests__/App.test.tsx -------------------------------------------------------------------------------- /client/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/build.gradle -------------------------------------------------------------------------------- /client/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/debug.keystore -------------------------------------------------------------------------------- /client/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /client/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /client/android/app/src/debug/java/com/becodemy/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/debug/java/com/becodemy/ReactNativeFlipper.java -------------------------------------------------------------------------------- /client/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /client/android/app/src/main/java/com/becodemy/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/java/com/becodemy/MainActivity.java -------------------------------------------------------------------------------- /client/android/app/src/main/java/com/becodemy/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/java/com/becodemy/MainApplication.java -------------------------------------------------------------------------------- /client/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /client/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /client/android/app/src/release/java/com/becodemy/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/app/src/release/java/com/becodemy/ReactNativeFlipper.java -------------------------------------------------------------------------------- /client/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/build.gradle -------------------------------------------------------------------------------- /client/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/gradle.properties -------------------------------------------------------------------------------- /client/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /client/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /client/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/gradlew -------------------------------------------------------------------------------- /client/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/gradlew.bat -------------------------------------------------------------------------------- /client/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/android/settings.gradle -------------------------------------------------------------------------------- /client/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/app.json -------------------------------------------------------------------------------- /client/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/babel.config.js -------------------------------------------------------------------------------- /client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/index.js -------------------------------------------------------------------------------- /client/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/.xcode.env -------------------------------------------------------------------------------- /client/ios/Becodemy.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Becodemy.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /client/ios/Becodemy.xcodeproj/xcshareddata/xcschemes/Becodemy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Becodemy.xcodeproj/xcshareddata/xcschemes/Becodemy.xcscheme -------------------------------------------------------------------------------- /client/ios/Becodemy.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Becodemy.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /client/ios/Becodemy/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Becodemy/AppDelegate.h -------------------------------------------------------------------------------- /client/ios/Becodemy/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Becodemy/AppDelegate.mm -------------------------------------------------------------------------------- /client/ios/Becodemy/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Becodemy/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /client/ios/Becodemy/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Becodemy/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /client/ios/Becodemy/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Becodemy/Info.plist -------------------------------------------------------------------------------- /client/ios/Becodemy/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Becodemy/LaunchScreen.storyboard -------------------------------------------------------------------------------- /client/ios/Becodemy/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Becodemy/main.m -------------------------------------------------------------------------------- /client/ios/BecodemyTests/BecodemyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/BecodemyTests/BecodemyTests.m -------------------------------------------------------------------------------- /client/ios/BecodemyTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/BecodemyTests/Info.plist -------------------------------------------------------------------------------- /client/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Podfile -------------------------------------------------------------------------------- /client/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/ios/Podfile.lock -------------------------------------------------------------------------------- /client/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /client/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/metro.config.js -------------------------------------------------------------------------------- /client/my-app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/my-app.d.ts -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/screens/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/src/screens/HomeScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/src/screens/LoginScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/SearchScreen.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/screens/SignupScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/src/screens/SignupScreen.tsx -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /server/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/.DS_Store -------------------------------------------------------------------------------- /server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/.env -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/app.js -------------------------------------------------------------------------------- /server/controllers/post.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/controllers/user.js -------------------------------------------------------------------------------- /server/db/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/db/db.js -------------------------------------------------------------------------------- /server/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/middleware/auth.js -------------------------------------------------------------------------------- /server/middleware/catchAsyncErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/middleware/catchAsyncErrors.js -------------------------------------------------------------------------------- /server/middleware/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/middleware/error.js -------------------------------------------------------------------------------- /server/models/PostModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/models/PostModel.js -------------------------------------------------------------------------------- /server/models/UserModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/models/UserModel.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/routes/user.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/server.js -------------------------------------------------------------------------------- /server/utils/ErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/utils/ErrorHandler.js -------------------------------------------------------------------------------- /server/utils/jwtToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Threads-starting-setup/HEAD/server/utils/jwtToken.js --------------------------------------------------------------------------------