{"id":20738947,"url":"https://github.com/kalwhyte/stick-it","last_synced_at":"2026-05-09T02:36:15.016Z","repository":{"id":198673186,"uuid":"697823749","full_name":"kalwhyte/Stick-It","owner":"kalwhyte","description":"A project to be done by 4 men who plan to reshape the future","archived":false,"fork":false,"pushed_at":"2025-03-23T13:50:20.000Z","size":15365,"stargazers_count":0,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-02T17:42:51.078Z","etag":null,"topics":["django-rest-framework","javascript","python3","reactframework","redis-server","render","vercel"],"latest_commit_sha":null,"homepage":"https://stick-it-ashy.vercel.app/","language":"Python","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/kalwhyte.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-09-28T14:48:48.000Z","updated_at":"2025-03-23T13:50:23.000Z","dependencies_parsed_at":"2023-10-15T13:17:51.592Z","dependency_job_id":"2ff466ee-bea5-4e98-9a78-df290ef53563","html_url":"https://github.com/kalwhyte/Stick-It","commit_stats":null,"previous_names":["kalwhyte/stick-it"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kalwhyte/Stick-It","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kalwhyte%2FStick-It","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kalwhyte%2FStick-It/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kalwhyte%2FStick-It/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kalwhyte%2FStick-It/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kalwhyte","download_url":"https://codeload.github.com/kalwhyte/Stick-It/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kalwhyte%2FStick-It/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32805095,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["django-rest-framework","javascript","python3","reactframework","redis-server","render","vercel"],"created_at":"2024-11-17T06:21:53.901Z","updated_at":"2026-05-09T02:36:14.992Z","avatar_url":"https://github.com/kalwhyte.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stick-It \n**[trello-clone]**\nStick-It is a trello clone with some abstract features such as drag and drop, image background, made using Django Rest Framework, SASS, React, and Redis.\n\n## Features\n- Register and Login\n    - JWT Authentication to connect DRF and React\n    - Can login with username or email\n- Projects (Teams)\n    - Create Projects\n    - Invite members to join projects via one time link\n    - Change member access level - Admin or Normal\n        - Admin can edit project details, invite new members, and change other members' access levels.\n- Boards\n    - Create personal boards or project boards\n    - Recently Viewed Boards\n    - Starred Boards\n    - Create and reorder lists\n    - Create, reorder, and change list of cards\n        - Add labels to cards\n        - Assign members to cards\n        - Add attachments to cards\n        - Add comments to cards\n    - Search\n        - Autocomplete (Debounced)\n    - Unsplash API Integration\n        - Set environment variable REACT_APP_UNSPLASH_API_ACCESS_KEY with access key\n    - Automatically adapt header and board title styling based on brightness of board background\n- Notifications\n    - When someone assigns you to a card\n    - When someone comments on a card you're assigned to\n    - When you're invited to a project\n    - When someone makes you admin of a project\n\n## Getting Started\n1. Install [Python](https://www.python.org/downloads/), [Yarn](https://classic.yarnpkg.com/en/docs/install/), [Redis](https://redis.io/download).\n2. Clone the repo\n```\n$ git clone https://github.com/kalwhyte/Stick-It.git\n$ cd Stick-It\n```\n3. Install [pipenv](https://pypi.org/project/pipenv/), a python virtual environment manager. Install backend dependencies and run migrations to create database. Default database is SQLite.\n```\n$ cd backend\n$ pipenv install\n$ pipenv run python manage.py migrate\n```\n4. Install frontend dependencies.\n```\n$ cd frontend\n$ yarn install\n```\n5. Run redis on port 6380\n``` \n$ redis-server --port 6380\n```\n6. Run both frontend and backend servers with following commands in appropriate directories.\n```\n$ pipenv run python manage.py runserver\n$ yarn start\n```\n\n## Screenshots\n\n# Using Postman to test the API\n\n|-----------------------------------------------------------------|\nProject List: To test the project list endpoint, make a GET request to the base URL, which is usually something like http://127.0.0.1:8000/projects/. This will retrieve a list of projects.\n|-----------------------------------------------------------------|\n    GET http://127.0.0.1:8000/projects/\n\nProject Detail: To test the project detail endpoint for a specific project, make a GET request to a URL that includes the project's primary key (pk), such as http://127.0.0.1:8000/projects/1/, replacing 1 with the actual project's ID.\n|-----------------------------------------------------------------|\n    GET http://127.0.0.1:8000/projects/1/\nProject Member List: To test the project member list endpoint for a specific project, make a GET request to a URL that includes the project's primary key, followed by /members/, such as http://127.0.0.1:8000/projects/1/members/.\n|-----------------------------------------------------------------|\n    GET http://127.0.0.1:8000/projects/6/members/\nProject Member Detail: To test the project member detail endpoint for a specific member within a project, make a GET request to a URL that includes both the project's primary key and the member's primary key, such as http://127.0.0.1:8000/projects/1/members/2/, replacing 1 and 2 with the actual project and member IDs.\n|-----------------------------------------------------------------|\n    GET http://127.0.0.1:8000/projects/6/members/7/\n\n\nSend Project Invite: To test sending a project invite, you would typically use a POST request to the project invite URL, such as http://127.0.0.1:8000/projects/1/invite/, replacing 1 with the actual project's ID. You'll need to provide the necessary data in the request body.\n|-----------------------------------------------------------------|\n\nAccept Project Invite: To test accepting a project invite, you would typically use a GET or POST request to the project invite URL with the token parameter, such as http://127.0.0.1:8000/projects/join/your-token/, replacing your-token with the actual token received when being invited to the project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkalwhyte%2Fstick-it","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkalwhyte%2Fstick-it","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkalwhyte%2Fstick-it/lists"}