{"id":29345572,"url":"https://github.com/crackspy/clip","last_synced_at":"2025-07-08T15:28:45.890Z","repository":{"id":293898420,"uuid":"984867520","full_name":"crackspy/Clip","owner":"crackspy","description":"Clip - Bookmark Manager  built with Django that lets users securely save, organize, and manage bookmarks.","archived":false,"fork":false,"pushed_at":"2025-07-03T04:41:22.000Z","size":686,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-03T05:21:45.504Z","etag":null,"topics":["bookmark-manager","clip","django-project","python-3","webapp"],"latest_commit_sha":null,"homepage":"https://nccb1crack.pythonanywhere.com/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/crackspy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-05-16T16:36:09.000Z","updated_at":"2025-07-03T04:11:59.000Z","dependencies_parsed_at":"2025-07-03T05:20:12.673Z","dependency_job_id":null,"html_url":"https://github.com/crackspy/Clip","commit_stats":null,"previous_names":["crackspy/clip"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/crackspy/Clip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crackspy%2FClip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crackspy%2FClip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crackspy%2FClip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crackspy%2FClip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crackspy","download_url":"https://codeload.github.com/crackspy/Clip/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crackspy%2FClip/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264295464,"owners_count":23586522,"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":["bookmark-manager","clip","django-project","python-3","webapp"],"created_at":"2025-07-08T15:28:43.108Z","updated_at":"2025-07-08T15:28:45.883Z","avatar_url":"https://github.com/crackspy.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clip – Bookmark Manager\n\n**Clip** is a full-stack bookmark manager web application built with **Django** (Python). It lets users securely store and organize favorite website links, mobile apps, desktop apps, etc., in the form of bookmarks—complete with names, descriptions, URLs, tags, and import/export functionality—while also providing an intuitive admin dashboard.  \n\n## 🌟 Key Features\n\n### 🖥️ User Side\n- 📑 Browse Saved Bookmarks.\n- ✏️ Create / Edit / Delete Bookmarks.\n- 🔍 Search \u0026 Filter\n- 👤 **Profile Page**\n  - Import / Export Bookmarks via JSON File\n\n\n### ⚙️ Admin Side\n\n- 👥 Manage All Users  \n- 📂 Manage All Bookmarks  \n\n## 🛠️ Project Stack\n\n- 🐍 **Python**  \n- 🌿 **Django**  \n- 🐘 **PostgreSQL**  \n- 🌐 **HTML**  \n- 🌬️ **Tailwind CSS**  \n- ✨ **JavaScript** \n\n## 🛠️ Installation\n\nFollow these steps to set up the project locally:\n\n1. **Clone the Repository:**\n```bash\ngit clone https://github.com/crackspy/Clip.git\ncd clip\n```\n\n2. **Create a Virtual Environment:**\n```bash\npython3 -m venv venv\nsource venv/bin/activate  # On Windows: venv\\Scripts\\activate\n```\n\n3. **Install Dependencies:**\n```bash\npip install -r requirements.txt\n```\n\u003e 🔄 **Use SQLite (development only)**  \n\u003e In `clip/settings.py`, comment out the PostgreSQL `DATABASES` block and uncomment (or add) the SQLite configuration:\n\u003e ```python\n\u003e DATABASES = {\n\u003e     'default': {\n\u003e         'ENGINE': 'django.db.backends.sqlite3',\n\u003e         'NAME': BASE_DIR / 'db.sqlite3',\n\u003e     }\n\u003e }\n\u003e ```\n\n4. **Set Up Environment Variables:**\nCreate a `.env-dev` file in the project root:\n```\nDEBUG=\"\"\nALLOWED_HOSTS=\"\"\nEMAIL_HOST_USER=\"\"\nEMAIL_HOST_PASSWORD=\"\"\n\n# for postgresql DB\nDB_NAME=\"\"\nDB_USER=\"\"\nDB_PASSWORD=\"\"\nDB_HOST=\"\"\nDB_PORT=5432\n```\n\n5. **Apply Migrations:**\n```bash\npython manage.py makemigrations\npython manage.py migrate\n```\n\n6. **Create Superuser (Admin Account):**\n```bash\npython manage.py createsuperuser\n```\n\n7. **Run the Development Server:**\n```bash\npython manage.py runserver\n```\n\nVisit: [http://127.0.0.1:8000](http://127.0.0.1:8000)\n\n\n## 📦 Project Structure\n```\n├── accounts/ # User authentication \u0026 profile management\n├── bookmark/ # Core bookmark app (models, views)\n├── clip/ # Django project settings \u0026 URL configuration\n├── db.sqlite3 # SQLite database file (development)\n├── manage.py # Django management script\n└── requirements.txt # Python dependencies\n```\n\n## 📜 License\nThis project is licensed under the **MIT License**. Feel free to use and modify it.\n\n## 📞 Contact\nFor any queries or suggestions, contact:\n- 🌐 Project GitHub: [https://github.com/crackspy/Clip](https://github.com/crackspy/Clip)\n\n---","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrackspy%2Fclip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrackspy%2Fclip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrackspy%2Fclip/lists"}