{"id":15130775,"url":"https://github.com/cryme-l/nlw-pocket-javascript","last_synced_at":"2026-02-02T18:33:39.280Z","repository":{"id":256782467,"uuid":"856412852","full_name":"crymE-L/nlw-pocket-javascript","owner":"crymE-L","description":"This project is a full-stack goals management application developed during RocketSeat's NLW Pocket course.","archived":false,"fork":false,"pushed_at":"2024-10-21T18:17:19.000Z","size":38306,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-12T09:15:00.628Z","etag":null,"topics":["biome","docker","drizzle-kit","drizzle-orm","nodejs","postgresql","react","tailwindcss","tanstack-react-query","typescript","vite"],"latest_commit_sha":null,"homepage":"","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/crymE-L.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-12T14:34:48.000Z","updated_at":"2024-10-21T18:17:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"3186f1fe-f8e0-4e47-a0f5-9b3fb20782cc","html_url":"https://github.com/crymE-L/nlw-pocket-javascript","commit_stats":{"total_commits":4,"total_committers":2,"mean_commits":2.0,"dds":0.25,"last_synced_commit":"24b75b4a7452b54e2b3d3f7fbb7b1a5afb45ef02"},"previous_names":["cryme-l/nlw-pocket-javascript"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crymE-L%2Fnlw-pocket-javascript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crymE-L%2Fnlw-pocket-javascript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crymE-L%2Fnlw-pocket-javascript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crymE-L%2Fnlw-pocket-javascript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crymE-L","download_url":"https://codeload.github.com/crymE-L/nlw-pocket-javascript/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248543838,"owners_count":21121838,"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":["biome","docker","drizzle-kit","drizzle-orm","nodejs","postgresql","react","tailwindcss","tanstack-react-query","typescript","vite"],"created_at":"2024-09-26T03:06:01.905Z","updated_at":"2026-02-02T18:33:39.243Z","avatar_url":"https://github.com/crymE-L.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 NLW Pocket : JavaScript - Goals Management Application\n\nThis is a full-stack goals management application developed during RocketSeat's NLW Pocket course. It helps users add, track, and manage their goals with an intuitive and modern interface.\n\n## 🖥️ Tech Stack\n\n- **Frontend**: React, TypeScript, Vite, TanStack Query, Tailwind CSS\n- **Backend**: Node.js, Drizzle ORM, PostgreSQL\n- **Tools**: Docker, Biome, Environment Files (.env), API Calls, Routing\n\n## 📸 Screenshots\n\n![Screenshot from 2024-09-12 16-10-56](https://github.com/user-attachments/assets/bab39027-4d2d-418b-b446-091adb482011)\n![Screenshot from 2024-09-12 15-50-31](https://github.com/user-attachments/assets/98c073ad-ad03-4339-aea2-b4871d9c8101)\n![Screenshot from 2024-09-12 15-50-36](https://github.com/user-attachments/assets/6ce3dd26-0608-44b3-b333-8831bd5e1d14)\n\n## 🌟 Features\n\n- Add and manage your goals\n- Track completion over time\n- Weekly goal summaries\n- Clean and responsive UI\n\n## 📦 Prerequisites\n\nBefore you begin, ensure you have the following installed:\n\n- [Node.js](https://nodejs.org/) (v18 or later)\n- [Docker](https://www.docker.com/) (to run PostgreSQL)\n\n## 🛠️ Setup Guide\n\nFollow these steps to set up the application locally:\n\n### 1. Clone the Repository\n\n```bash\ngit clone https://github.com/crymE-L/nlw-pocket-javascript.git\ncd nlw-pocket-javascript\n```\n\n### 2. Set Up Environment Variables\n\nCreate a .env file in the project root with the following content:\n\n```bash\nDATABASE_URL=postgresql://user:password@localhost:5432/your-database\nREACT_APP_API_URL=http://localhost:3001/api\n```\n\n### 3. Install Backend Dependencies\n\n```bash\ncd backend\nnpm install\n```\n\n### 4. Install Frontend Dependencies\n\n```bash\ncd ../frontend\nnpm install\n```\n\n### 5. Start Docker Services\n\nRun the following command to spin up a PostgreSQL database according to the configuration in the docker-compose.yml file:\n\n```bash\ndocker-compose up -d\n```\n### 6. Run Migrations\n\nNavigate to the backend folder and run migrations to set up your database:\n\n```bash\ncd backend\nnpx drizzle-kit sync:push\n```\n\n### 7. Start the Backend Server\n\nInside the backend folder, start the server:\n\n```bash\nnpm run dev\n```\n\nThe backend server will start on http://localhost:3001.\n\n### 8. Start the Frontend Server\n\nOpen a new terminal, navigate to the frontend directory, and start the frontend:\n\n```bash\ncd frontend\nnpm run dev\n```\n\nThe frontend will start on http://localhost:5173.\n\n### 9. Access the Application\nVisit http://localhost:5173 in your browser to start using the app!\n\n## 🤝 Contributing\nContributions are welcome! Feel free to open issues or submit pull requests.\n\n## 📝 License\nThis project is licensed under the MIT License.\n\n## 📧 Contact\nFor any inquiries, please contact crymerom@gmail.com.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryme-l%2Fnlw-pocket-javascript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcryme-l%2Fnlw-pocket-javascript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryme-l%2Fnlw-pocket-javascript/lists"}