A shot at a social media platform. Front-end only.
- Firebase is used for hosting and database.
- Project is hosted at https://sozialm.web.app.
- Webview based APK release
- Please go through CONTRIBUTING.md.
- During code review, if your code is found to deviate too far from the rules mentioned, your code won't be merged.
Repo Root ├ .github │ ├ ISSUE_TEMPLATE │ │ ├ bug_report.md │ │ ├ custom.md │ │ └ feature_request.md │ └ workflows │ ├ Obfuscate JS and Deploy to Firebase.yml │ └ Obfuscate JS and Deploy to Preview.yml ├ development │ ├ public │ │ ├ auth │ │ │ ├ index.html │ │ │ ├ script.js │ │ │ └ styles.css │ │ ├ common │ │ │ ├ css │ │ │ │ ├ colors.css │ │ │ │ ├ common.css │ │ │ │ ├ keyframes.css │ │ │ │ ├ markdown.css │ │ │ │ ├ mediaqueries.css │ │ │ │ └ overlays.css │ │ │ ├ js │ │ │ │ ├ colors.js │ │ │ │ ├ domfunc.js │ │ │ │ ├ firebaseinit.js │ │ │ │ ├ generalfunc.js │ │ │ │ ├ init.js │ │ │ │ ├ logging.js │ │ │ │ ├ overlays.js │ │ │ │ └ variables.js │ │ │ └ res │ │ │ ├ backarrow100white.png │ │ │ ├ defaultdp.png │ │ │ └ whatsappbg.png │ │ ├ downloads │ │ │ ├ app.web.sozialm.apk │ │ │ └ app.web.sozialm.localhost.apk │ │ ├ messaging │ │ │ ├ chat │ │ │ │ ├ index.html │ │ │ │ ├ script.js │ │ │ │ └ styles.css │ │ │ ├ inbox │ │ │ │ ├ index.html │ │ │ │ ├ script.js │ │ │ │ └ styles.css │ │ │ └ script.js │ │ ├ profile │ │ │ ├ index.html │ │ │ ├ script.js │ │ │ └ styles.css │ │ ├ records │ │ │ └ currentapkversion │ │ ├ settings │ │ │ ├ index.html │ │ │ ├ script.js │ │ │ └ styles.css │ │ ├ 404.html │ │ ├ a2hs.webmanifest │ │ ├ favicon.ico │ │ └ index.html │ ├ .firebaserc │ ├ database.rules.json │ └ firebase.json ├ docs │ ├ CODE_OF_CONDUCT.md │ └ CONTRIBUTING.md ├ preview │ ├ .firebaserc │ ├ database.rules.json │ ├ firebase.json │ └ preview.build.list ├ production │ ├ .firebaserc │ ├ database.rules.json │ └ firebase.json ├ .gitignore ├ LICENSE.txt └ README.md