{"id":25933070,"url":"https://github.com/prathicashettym/tweetapp","last_synced_at":"2026-05-22T16:36:24.324Z","repository":{"id":279322576,"uuid":"935783048","full_name":"PrathicaShettyM/TweetApp","owner":"PrathicaShettyM","description":"This my Tweet Application using Django","archived":false,"fork":false,"pushed_at":"2025-07-20T17:34:17.000Z","size":2458,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-20T17:38:01.717Z","etag":null,"topics":["bootstrap","django","html","sqlite"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/PrathicaShettyM.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-02-20T02:31:18.000Z","updated_at":"2025-07-20T17:34:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"6001bed7-0790-4e46-a0ce-bee929f2b2aa","html_url":"https://github.com/PrathicaShettyM/TweetApp","commit_stats":null,"previous_names":["prathicashettym/tweetapp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/PrathicaShettyM/TweetApp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrathicaShettyM%2FTweetApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrathicaShettyM%2FTweetApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrathicaShettyM%2FTweetApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrathicaShettyM%2FTweetApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PrathicaShettyM","download_url":"https://codeload.github.com/PrathicaShettyM/TweetApp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrathicaShettyM%2FTweetApp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33354039,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T12:23:38.849Z","status":"online","status_checked_at":"2026-05-22T02:00:06.671Z","response_time":265,"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":["bootstrap","django","html","sqlite"],"created_at":"2025-03-04T00:52:03.929Z","updated_at":"2026-05-22T16:36:24.319Z","avatar_url":"https://github.com/PrathicaShettyM.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TweetApp\n\n# Project setup\n- py -m venv tweetapp\n- tweetapp\\Scripts\\activate\n- pip install django\n- python.exe -m pip install --upgrade pip\n- pip freeze \u003e requirements.txt\n- django-admin startproject tweetsapp =\u003e project name\n\n- cd tweetsapp\n- python manage.py runserver\n\n- python manage.py makemigrations\n- python manage.py migrate\n\n- python manage.py createsuperuser(admin)\nusername: prathicashettym\n\n- in settings.py \nimport os\n\nMEDIA_URL='/media/'\nMEDIA_ROOT = os.path.join(BASE_DIR,'media')\n\nSTATIC_URL='static/'\nSTATICFILE_DIRS=[os.path.join(BASE_DIR,'static')]\n\n\n- in urls.py add these\nfrom django.conf import settings\nfrom django.conf.urls.static import static\n\nurlpatterns = [\n    path(\"admin/\", admin.site.urls),\n] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)\n\n- python manage.py startapp tweet =\u003e app\n- make urls.py and add this\nfrom django.contrib import admin\nfrom django.urls import path\nfrom django.conf import settings\nfrom django.conf.urls.static import static\n\n\nurlpatterns = [\n    # path(\"admin/\", admin.site.urls),\n] \n\n- update settings.py tht we have made a new app tweet\nINSTALLED_APPS = [\n    \"django.contrib.admin\",\n    \"django.contrib.auth\",\n    \"django.contrib.contenttypes\",\n    \"django.contrib.sessions\",\n    \"django.contrib.messages\",\n    \"django.contrib.staticfiles\",\n    \"tweet\",\n]\n\n- add this also\nTEMPLATES = [\n    {\n        \"BACKEND\": \"django.template.backends.django.DjangoTemplates\",\n        \"DIRS\": [os.path.join(BASE_DIR, 'templates')],\n        \"APP_DIRS\": True,\n     ..\n    }\n]\n\n\n\n\n\n\n\n\n\n\n\n# Use it other times\n- tweetapp\\Scripts\\activate\n- cd tweetsapp\n- python manage.py runserver\n\n\n\n## assignments\n- search functionality - form, create new view, get search results, based on key words in tweet\n\n## my additionals\n- - profile section\n  - followers\n  - ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprathicashettym%2Ftweetapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprathicashettym%2Ftweetapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprathicashettym%2Ftweetapp/lists"}