{"id":27193587,"url":"https://github.com/celerik/launch-partners-mern","last_synced_at":"2026-02-25T06:02:41.894Z","repository":{"id":42891785,"uuid":"254193548","full_name":"celerik/launch-partners-mern","owner":"celerik","description":null,"archived":false,"fork":false,"pushed_at":"2023-01-06T03:00:10.000Z","size":1291,"stargazers_count":0,"open_issues_count":8,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-26T10:28:10.394Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"SCSS","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/celerik.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":"2020-04-08T20:28:32.000Z","updated_at":"2021-09-03T03:40:32.000Z","dependencies_parsed_at":"2023-02-05T04:17:20.181Z","dependency_job_id":null,"html_url":"https://github.com/celerik/launch-partners-mern","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/celerik/launch-partners-mern","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerik%2Flaunch-partners-mern","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerik%2Flaunch-partners-mern/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerik%2Flaunch-partners-mern/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerik%2Flaunch-partners-mern/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/celerik","download_url":"https://codeload.github.com/celerik/launch-partners-mern/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerik%2Flaunch-partners-mern/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29811863,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T05:36:42.804Z","status":"ssl_error","status_checked_at":"2026-02-25T05:36:31.934Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-04-09T18:56:23.246Z","updated_at":"2026-02-25T06:02:41.866Z","avatar_url":"https://github.com/celerik.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LaunchPartners MERN\r\n\r\n## Needed prerequisites\r\n\r\n- [VSCode](https://code.visualstudio.com/)\r\n- [MongoDB](https://www.mongodb.com/download-center)\r\n- [NodeJS](https://nodejs.org/en/download/)\r\n- [Npm](https://www.npmjs.com/)\r\n\r\n## Optionals tools to manage mongo databases\r\n- [Studio3T](https://studio3t.com/)\r\n- [MongoDB Compass](https://www.mongodb.com/products/compass)\r\n\r\n### Each `backend` and `frontend` folder has its own VSCode workspace settings so I recommend to open each one separate.\r\n\r\n# Setting up MongoDB instance\r\n\r\nJust install MongoDB, get the needed server info and keep the instance running while you're working with it.\r\n\r\n\r\n# Setting up backend\r\n\r\nIn `backend` root folder run the following command to install the npm dependencies\r\n\r\n```bash\r\nnpm install\r\n# or the shortcut\r\nnpm i\r\n```\r\n\r\nCopy the `.env.example` file content to a new `.env` file in `backend` root folder, then edit the variables if you want to, here is a brief explanation of them:\r\n\r\n| VAR             | VALUE   | DEFAULT                    | DESCRIPTION                                                                         |\r\n| --------------- |---------| -------------------------- | ----------------------------------------------------------------------------------- |\r\n| PORT            | Number  | 7589                       | Port number where the API expected to be hosted                                     |\r\n| DEBUG           | Boolean | TRUE                       | To see different logs during development process                                    |\r\n| DB_NAME         | String  | launchPartners             | MongoDB database name                                                               |\r\n| DB_PORT         | Number  | 27017                      | MongoDB instance port                                                               |\r\n| JWT_PRIVATE_KEY | String  | SECRET_AND_PRIVATE_KEY_123 | A secret or private key to generate Json Web Tokens to handle auth and API requests |\r\n\r\nOnce you finished with the environment variables you can start a development server by running the following command:\r\n\r\n```bash\r\nnpm run dev\r\n```\r\n\r\n## NOTE\r\n\u003e The first time you start a development server the database is created with the users collection, also this collection is populated with some mock data.\r\n\r\nThen you can check the API is working by accesing some endpoints such as:\r\n\r\n- [http://localhost:7589/api/](http://localhost:7589/api/)\r\n- [http://localhost:7589/api/user](http://localhost:7589/api/user)\r\n\r\n# Setting up frontend\r\n\r\nIn `frontend` root folder run the following command to install the npm dependencies\r\n\r\n```bash\r\nnpm install\r\n# or the shortcut\r\nnpm i\r\n```\r\n\u003e Over here you can play as well with some environment variables with an `.env` file\r\n\r\nThen you can start a development server running:\r\n\r\n```bash\r\nnpm run start\r\n# or just a simple\r\nnpm start\r\n```\r\n\r\nThen you can check the frontend is running going through:\r\n\r\n- [http://localhost:3000/](http://localhost:3000/)\r\n\r\n\u003e Over here the environment variables are more attached to the file `env-local.json` located in `src/config/settings/`\r\n\r\nSo keep in mind that if you change the API port you have to change it as well in these files to connect to it correctly.\r\n\r\nAlso, there is a mock archictecture in the frontend that you can enable by setting to `true` the `isEnabled` property in `serviceMocker` object in `src/config/settings/globals.json` file.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcelerik%2Flaunch-partners-mern","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcelerik%2Flaunch-partners-mern","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcelerik%2Flaunch-partners-mern/lists"}