{"id":25721475,"url":"https://github.com/pedro-estevao/wongames-api","last_synced_at":"2025-02-25T18:49:17.707Z","repository":{"id":189045024,"uuid":"679909231","full_name":"Pedro-Estevao/wongames-api","owner":"Pedro-Estevao","description":"API made with Strapi, to seed the Landing Page NextJS data developed in the React Avançado course.","archived":false,"fork":false,"pushed_at":"2024-04-13T00:20:49.000Z","size":347035,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-04-13T12:47:07.342Z","etag":null,"topics":["api","backend","javascript","landing-page","nodejs","react","strapi","typescript"],"latest_commit_sha":null,"homepage":"https://wongames-api.vercel.app","language":"TypeScript","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/Pedro-Estevao.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-08-17T22:43:52.000Z","updated_at":"2024-04-15T01:42:34.287Z","dependencies_parsed_at":"2023-08-18T03:15:58.368Z","dependency_job_id":"29652326-89d0-4e37-8126-120ed6d8ddd1","html_url":"https://github.com/Pedro-Estevao/wongames-api","commit_stats":null,"previous_names":["pedro-estevao/react-avancado_landing-page_api","pedro-estevao/wongames-api"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pedro-Estevao%2Fwongames-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pedro-Estevao%2Fwongames-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pedro-Estevao%2Fwongames-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pedro-Estevao%2Fwongames-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Pedro-Estevao","download_url":"https://codeload.github.com/Pedro-Estevao/wongames-api/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240729195,"owners_count":19848120,"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":["api","backend","javascript","landing-page","nodejs","react","strapi","typescript"],"created_at":"2025-02-25T18:49:17.039Z","updated_at":"2025-02-25T18:49:17.700Z","avatar_url":"https://github.com/Pedro-Estevao.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cpicture\u003e\n  \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/Pedro-Estevao/boilerplate-nextjs/master/public/img/logo.svg\"\u003e\n  \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"https://raw.githubusercontent.com/Pedro-Estevao/boilerplate-nextjs/master/public/img/logo-gh.svg\"\u003e\n  \u003cimg alt=\"Shows an illustrated sun in light mode and a moon with stars in dark mode.\" src=\"https://raw.githubusercontent.com/Pedro-Estevao/boilerplate-nextjs/master/public/img/logo.svg\"\u003e\n\u003c/picture\u003e\n\n# WonGames - Landing Page API\n\nThis is the API developed with [Strapi](https://strapi.io) to seed the WonGames landing page for the [React Avançado course](https://reactavancado.com.br/).\n\n## Requirements\n\nThis project uses the [MySQL](https://www.mysql.com) database, so to make it work, you need to have it installed on your local machine, or if you prefer, use Docker.\n\nThe configuration for the Database can be found in the directory [config/database.js](config/database.js)\n\n## Getting Started\n\nFirst, run the command to install the dependencies:\n\n```bash\n$ npm install\n```\n\nCreate an `.env` file in the project root, or edit if it already exists, similar to the following structure:\n\n```bash\nHOST = 0.0.0.0 #Host where strapi will start\nPORT = 1337 #Port where strapi will start \nAPP_KEYS = \"toBeModified1,toBeModified2\"\nAPI_TOKEN_SALT = tobemodified\nADMIN_JWT_SECRET = tobemodified\nTRANSFER_TOKEN_SALT = tobemodified\nJWT_SECRET = tobemodified\n\n# Database\nDATABASE_CLIENT = \"YOUR_DATABASE_NAME\" #Your database name: mysql, postgresql, mariadb (Check the supported databases in the strapi documentation)\nDATABASE_HOST = \"YOUR_DATABASE_HOST\" \nDATABASE_PORT = \"YOUR_DATABASE_PORT\"\nDATABASE_NAME = \"YOUR_DATABASE_NAME\"\nDATABASE_USERNAME = \"YOUR_DATABASE_USER\"\nDATABASE_PASSWORD = \"YOUR_DATABASE_PASS\"\nDATABASE_SSL = \"YOUR_DATABASE_SSL\"\nJWT_SECRET = \"YOUR_DATABASE_JWT_SECRETE\"\n```\n\n## Commands\n\n### `dev`\n\nStart your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-develop)\n\n```bash\n$ npm run dev\n```\n\n### `start`\n\nStart your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-start)\n\n```bash\n$ npm run start\n```\n\n### `build`\n\nBuild your admin panel. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-build)\n\n```bash\n$ npm run build\n```\n\n## ⚙️ Deployment\n\nStrapi gives you many possible deployment options for your project including [Strapi Cloud](https://cloud.strapi.io). Browse the [deployment section of the documentation](https://docs.strapi.io/dev-docs/deployment) to find the best solution for your use case.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpedro-estevao%2Fwongames-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpedro-estevao%2Fwongames-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpedro-estevao%2Fwongames-api/lists"}