{"id":16272085,"url":"https://github.com/sshh12/facetweet","last_synced_at":"2026-04-18T12:03:45.212Z","repository":{"id":70737721,"uuid":"124303628","full_name":"sshh12/FaceTweet","owner":"sshh12","description":"English Social Media Site Satire Project","archived":false,"fork":false,"pushed_at":"2018-03-21T20:46:27.000Z","size":1147,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T17:33:08.685Z","etag":null,"topics":["english","firebase","friendly-pix","satire"],"latest_commit_sha":null,"homepage":"https://facetweet-71a89.firebaseapp.com/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sshh12.png","metadata":{"files":{"readme":"README-FriendlyPix.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-FriendlyPix","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-07T22:44:53.000Z","updated_at":"2018-03-21T20:46:28.000Z","dependencies_parsed_at":"2023-02-22T22:15:15.881Z","dependency_job_id":null,"html_url":"https://github.com/sshh12/FaceTweet","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sshh12/FaceTweet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sshh12%2FFaceTweet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sshh12%2FFaceTweet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sshh12%2FFaceTweet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sshh12%2FFaceTweet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sshh12","download_url":"https://codeload.github.com/sshh12/FaceTweet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sshh12%2FFaceTweet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31967993,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["english","firebase","friendly-pix","satire"],"created_at":"2024-10-10T18:16:02.795Z","updated_at":"2026-04-18T12:03:45.184Z","avatar_url":"https://github.com/sshh12.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Friendly Pix Web\n\nFriendly Pix Web is a sample app demonstrating how to build a JavaScript/Web app with the Firebase Platform.\n\nFriendly Pix is a place where you can share photos, follow friends, comment on photos...\n\n\n## Few words on dependencies\n\nFriendly Pix is built using Javascript, [Firebase](https://firebase.google.com/docs/web/setup) and jQuery. The Auth flow is built using [Firebase-UI](https://github.com/firebase/firebaseui-web). Javascript dependencies are managed using [bower](http://bower.io/) and Build/Deploy tools dependencies are managed using [npm](https://www.npmjs.com/). Also Friendly Pix is written in ES2015 so for wide browser support we'll transpile the code to ES5 using [BabelJs](http://babeljs.io). Additionally server-side micro-services are built on [Cloud Functions for Firebase](https://firebase.google.com/docs/functions).\n\n\n## Create and configure your Firebase Project\n\n1. In a console run `npm install` to install all Build/Deploy tools dependencies.\n1. Create a Firebase project using the [Firebase Console](https://firebase.google.com/console).\n2. Enable **Google** as a Sign in provider in **Firebase Console \u003e Authentication \u003e Sign in Method** tab.\n3. Enable **Facebook** as a Sign in provider in **Firebase Console \u003e Authentication \u003e Sign in Method** tab. You'll need to provide your Facebook app's credentials. If you haven't yet you'll need to have created a Facebook app on [Facebook for Developers](https://developers.facebook.com)\n4. In a console run `firebase use --add` and, when prompted, select the Firebase Project you have just created. This will make sure the Firebase CLI is configured to use your particular project.\n\n\n## Start a local development server\n\nYou can start a local development server by running:\n\n```bash\nnpm run serve\n```\n\nThis will start `firebase serve` and make sure your Javascript files are transpiled automatically to ES5.\n\n\u003e This is currently broken on \nws. On Windows please run the following commands separately instead: `bower install`, `babel -w public\\scripts -s --retain-lines -d public/scripts-es5` and `firebase serve`.\n\nThen open [http://localhost:5000](http://localhost:5000)\n\n\u003e Note 1: On new projects, the Realtime Database and Cloud Storage come with default Security rules that prevent all read and writes. Deploy the app once first to deploy the Storage and Database security rules on the project.\n\n\u003e Note 2: Cloud Functions cannot yet be ran locally. Deploy the app once first to deploy and enable the Cloud Functions.\n\n\n## Deploy the app\n\nBefore deploying your code you need to build it for production. Run:\n\n```bash\nnpm run build\n```\n\nThis will install all runtime dependencies and transpile the Javascript code to ES5 and install Cloud Functions dependencies.\nThen run:\n\n```bash\nfirebase deploy\n```\n\nThen this deploys a new version of your code that will be served from `https://\u003cPROJECT_ID\u003e.firebaseapp.com`\n\n\n## Contributing\n\nWe'd love that you contribute to the project. Before doing so please read our [Contributor guide](CONTRIBUTING.md).\n\n\n## License\n\n© Google, 2011. Licensed under an [Apache-2](LICENSE) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsshh12%2Ffacetweet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsshh12%2Ffacetweet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsshh12%2Ffacetweet/lists"}