{"id":18653364,"url":"https://github.com/fullstackacademy/firebones","last_synced_at":"2025-10-08T22:27:36.446Z","repository":{"id":20859678,"uuid":"89564675","full_name":"FullstackAcademy/firebones","owner":"FullstackAcademy","description":"A happy little skeleton, now on fire.","archived":false,"fork":false,"pushed_at":"2023-11-10T00:57:18.000Z","size":1519,"stargazers_count":125,"open_issues_count":28,"forks_count":29,"subscribers_count":16,"default_branch":"master","last_synced_at":"2024-04-15T07:27:17.017Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FullstackAcademy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-04-27T06:43:26.000Z","updated_at":"2024-03-21T17:11:22.000Z","dependencies_parsed_at":"2023-02-13T23:45:39.518Z","dependency_job_id":null,"html_url":"https://github.com/FullstackAcademy/firebones","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FullstackAcademy%2Ffirebones","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FullstackAcademy%2Ffirebones/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FullstackAcademy%2Ffirebones/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FullstackAcademy%2Ffirebones/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FullstackAcademy","download_url":"https://codeload.github.com/FullstackAcademy/firebones/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223472762,"owners_count":17150745,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-07T07:11:20.433Z","updated_at":"2025-10-08T22:27:31.423Z","avatar_url":"https://github.com/FullstackAcademy.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hi, I'm 🔥🔥firebones🔥🔥\n\nI'm a happy little skeleton who is totally on [fire(base)](https://firebase.google.com)!\n\nYou can clone me to use as a starter on your projects. I have React and Firebase,\nand some examples of how to put them together.\n\n## I need node \u003e= 7.0.0\n\nIf you don't have it, I'll complain and tell you how to install it.\n\n## 1. Make me into something!\n\nWe recommend that you **clone**, not fork, this repo – unless your intention is\nto develop Firebones proper instead of using Firebones as the starting point for your\nown application.\n\nStart by doing either of the following:\n\n* Create a GitHub repo and clone it, or\n* `git init` in an empty directory on your machine.\n\nAfter you have a repo on your machine:\n\n```sh\ngit remote add bones https://github.com/FullstackAcademy/firebones.git\ngit fetch bones\ngit merge bones/master\n```\n\nAnd then you'll have me! If I change – which I probably will – you can get the most recent\nversion by doing this again:\n\n```sh\ngit fetch bones\ngit merge bones/master\n```\n\n## 2. Install the Firebase command line tools\n\nYou'll want this globally:\n\n```sh\nnpm install -g firebase-tools\n```\n\nIf you just installed them, you'll need to log in:\n\n```sh\nfirebase login\n```\n\n## 2. Start my dusty heart\n\nShort and sweet:\n\n```sh\nnpm install\nnpm run dev\n```\n\nThe `dev` script runs webpack, `firebase serve`, the linter, and the tests. You can run these\nin separate terminals if you prefer:\n\n```sh\nnpm run build-watch   # webpack\n```\n\n```sh\nfirebase serve        # Serve the app on port 5000\n```\n\n```sh\nnpm run test-watch    # Watch tests\n```\n\n```sh\nnpm run lint-watch    # Watch lint\n```\n\n## 3. Tell me about your Firebase\n\nBy default, I'm pointed at the firebones firebase. That might be nice for exploring,\nbut soon you'll want to create your own.\n\nGo to [the Firebase console](https://console.firebase.google.com/) and create\na project. Go to Overview in that project's console, and click \"Add Firebase to your web app\".\n\nCopy and paste the config from there into [fire/index.js](fire/index.js). You don't have to\ncopy the call to `initializeApp`, I've already got that.\n\nThen, in your code, you can import firebase like so:\n\n```javascript\nimport firebase from 'APP/fire'\n```\n\n## 4. Deploy\n\nThe first time you deploy, you'll need to tell firebase which project to use:\n\n```sh\nfirebase use --add\n```\n\nThen, and every time thereafter, just say,\n\n```sh\nfirebase deploy\n```\n\nAnd I'll be deployed to Firebase hosting.\n\n## My anatomy\n\n`/app` has the React setup. `main.jsx` is the entry point.\n\n`/fire` has the Firebase config.\n\n`/functions` is where your [cloud functions](https://firebase.google.com/preview/functions/write-firebase-functions) live.\n\n`/demos` has some demos (currently just a little scratchpad).\n\n`/bin` has scripts. (Right now it has *one* script that creates a useful symlink.)\n\n## Conventions\n\nI use `require` and `module.exports` in `.js` files.\n\nI use `import` and `export` in `.jsx` files, unless `require` makes for cleaner code.\n\nI use two spaces, no semi-colons, and generally prefer a less strict version of\n[NPM's funny coding style](https://docs.npmjs.com/misc/coding-style). My lint config is\nin [eslintrc.js](eslintrc.js).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffullstackacademy%2Ffirebones","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffullstackacademy%2Ffirebones","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffullstackacademy%2Ffirebones/lists"}