{"id":19658425,"url":"https://github.com/iphytech/dynamic","last_synced_at":"2025-07-27T12:16:30.383Z","repository":{"id":102247822,"uuid":"100518481","full_name":"Iphytech/dynamic","owner":"Iphytech","description":null,"archived":false,"fork":false,"pushed_at":"2017-08-16T18:10:09.000Z","size":235,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-10T00:59:56.953Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Iphytech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2017-08-16T18:08:00.000Z","updated_at":"2017-08-16T18:10:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"f30eac00-1610-4662-87e0-c108fe219ad7","html_url":"https://github.com/Iphytech/dynamic","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/Iphytech%2Fdynamic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Iphytech%2Fdynamic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Iphytech%2Fdynamic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Iphytech%2Fdynamic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Iphytech","download_url":"https://codeload.github.com/Iphytech/dynamic/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240965933,"owners_count":19885988,"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-11T15:37:34.156Z","updated_at":"2025-02-27T02:27:53.701Z","avatar_url":"https://github.com/Iphytech.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clementine.js FCC Boilerplate\n\n[![Join the chat at https://gitter.im/johnstonbl01/clementinejs](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/johnstonbl01/clementinejs?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n## Overview\n\nClementine.js is a lightweight boilerplate for fullstack JavaScript development which utilizes MongoDB, Express and Node.js. The boilerplate errs on the side of transparency and simplicity, making it an ideal starting point for beginner and seasoned developers alike. \n\nThe [Free Code Camp](http://www.freecodecamp.com) version of Clementine.js is meant for use when completing projects as part of the FCC curriculum. This version includes GitHub authentication using [Passport](http://passportjs.org/).\n\n## Versions\n\nThere are 3 versions of Clementine.js:\n\n- [**Standard**](https://github.com/johnstonbl01/clementinejs): the simplest version of Clementine.js. Intended for those who wish for the smallest and least intrusive footprint OR to implement features on their own.\n- [**Angular**](https://github.com/johnstonbl01/clementinejs-angular): a slightly more complex version of the same application. This version employs the use of AngularJS as the front-end framework.\n- **Free Code Camp (FCC)** (this version): A modified version of the standard boilerplate that is intended for use with the [Free Code Camp](http://freecodecamp.com/) curriculum.\n\n# Quick Start Guide\n\n### Prerequisites\n\nIn order to use Clementine.js, you must have the following installed:\n\n- [Node.js](https://nodejs.org/)\n- [NPM](https://nodejs.org/)\n- [MongoDB](http://www.mongodb.org/)\n- [Git](https://git-scm.com/)\n\n### Installation \u0026 Startup\n\nTo install Clementine.js, simply enter the below in the terminal window:\n\n```bash\n$ git clone https://github.com/johnstonbl01/clementinejs-fcc.git your-project\n```\n\nTo install the dependencies, enter the following in your terminal:\n\n```\n$ cd your-project\n$ npm install\n```\n\nThis will install the Clementine.js components into the `your-project` directory.\n\n### Setup GitHub Authentication\n\nPlease follow [this guide](http://www.clementinejs.com/tutorials/tutorial-passport.html#GitHubAppSetup) to register the application with GitHub and get API keys / secrets.\n\n### Local Environment Variables\n\nCreate a file named `.env` in the root directory. This file should contain:\n\n```\nGITHUB_KEY=your-client-id-here\nGITHUB_SECRET=your-client-secret-here\nMONGO_URI=mongodb://localhost:27017/clementinejs\nPORT=8080\nAPP_URL=http://localhost:8080/\n```\n\n### Starting the App\n\nTo start the app, make sure you're in the project directory and type `node server.js` into the terminal. This will start the Node server and connect to MongoDB.\n\nYou should the following messages within the terminal window:\n\n```\nNode.js listening on port 8080...\n```\n\nNext, open your browser and enter `http://localhost:8080/`. Congrats, you're up and running!\n\n### c9.io Setup\n\nIf you're using c9.io, please [reference the documentation](http://www.clementinejs.com/versions/fcc.html#c9.ioSetup) for instructions to get Clementine.js working in the c9 environment.\n\n## Contributing\n\nThis is an open-source project, and contributions are always welcome! To see ways to contribute, please review the [contribution guidelines](http://www.clementinejs.com/developers/contributing.html).\n\n## Documentation\n\nComplete documentation can be [found here](http://www.clementinejs.com).\n\n### Tutorial\n\nYou can find a complete step-by-step tutorial on how to create this app from the ground up [here](http://www.clementinejs.com/tutorials/tutorial-passport.html).\n\n## Features\n\n| Features           | Standard  | Angular   | FCC       |\n|:---------          |:--------: |:--------: |:---------:|\n| MongoDB            | _Yes_     | _Yes_     | _Yes_     |\n| Express            | _Yes_     | _Yes_     | _Yes_     |\n| AngularJS (1.x)    | _No_      | _Yes_     | _No_      |\n| Node.js            | _Yes_     | _Yes_     | _Yes_     |\n| Passport           | _No_      | _No_      | _Yes_     |\n| Mongoose           | _No_      | _No_      | _Yes_     |\n\n## License\n\nMIT License. [Click here for more information.](LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiphytech%2Fdynamic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiphytech%2Fdynamic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiphytech%2Fdynamic/lists"}