{"id":22214521,"url":"https://github.com/pascaline-m/python_p09","last_synced_at":"2026-05-08T09:32:12.749Z","repository":{"id":258705911,"uuid":"366854477","full_name":"pascaline-m/python_p09","owner":"pascaline-m","description":"Beta version of a social website using Django and Python","archived":false,"fork":false,"pushed_at":"2024-09-27T16:59:50.000Z","size":1018,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-15T07:27:22.586Z","etag":null,"topics":["bootstrap","django","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/pascaline-m.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}},"created_at":"2021-05-12T21:09:31.000Z","updated_at":"2024-09-27T16:59:53.000Z","dependencies_parsed_at":"2024-10-20T08:02:07.876Z","dependency_job_id":"94f94b85-b233-43d3-a201-ffaab2e069e0","html_url":"https://github.com/pascaline-m/python_p09","commit_stats":null,"previous_names":["pascaline841/python_p09","pasqualine-m/python_p09","pascaline-m/python_p09"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pascaline-m/python_p09","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pascaline-m%2Fpython_p09","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pascaline-m%2Fpython_p09/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pascaline-m%2Fpython_p09/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pascaline-m%2Fpython_p09/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pascaline-m","download_url":"https://codeload.github.com/pascaline-m/python_p09/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pascaline-m%2Fpython_p09/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32774752,"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":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","python"],"created_at":"2024-12-02T21:16:53.206Z","updated_at":"2026-05-08T09:32:12.731Z","avatar_url":"https://github.com/pascaline-m.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eDJANGO Project -  LIT REVIEW\u003c/h1\u003e\n  \n## OVERVIEW\nBeta version of a website made with Django. Allows you to post reviews to respond to the reviews of other user, to post your own review and to follow users and their posts.\n\u003cbr\u003e\n\n\n## REQUISITORIES \nPython3\u003cbr\u003e\nDjango3\u003cbr\u003e\nFlake8-html\u003cbr\u003e\n\n## INSTALLATION\nStart by closing the repository :\n```\ngit clone https://github.com/pascaline841/python_p09\n```\nStart access the project folder\n\n## for Window\nCreate a virtual environment\n```\npython -m venv env\n```\nEnable the virtual environment\n```\ncd env/scripts\nsource activate\n```\n\n## for Linux or macOS\nCreate a virtual environment \n```\npython3 -m venv env\n```\nActivate the virtual environment with \n```\nsource env/bin/activate \n```\n## . . . \nInstall the python dependencies to the virtual environment\n```\npip install -r requirements.txt\n```\n- Create the database structure by using sqlite3 \n```\npython manage.py migrate\n``` \n- Create an administrative account : \u003cbr\u003e\nYou will be asked to select a username, provide an email address, and choose and confirm a password for the account.\n```\nwinpty python manage.py createsuperuser\n```\n- Create and open a file named .env then paste :\n```\nDJANGO_SETTINGS_MODULE=\"litreview.settings.development\"\nDB_SECRET_KEY= \n```\nThen complete DB_SECRET_KEY with the key you receive in private.\n## LAUNCH \n\nRun the program\n```\npython manage.py runserver\n```\nLaunch :\n\nhttp://127.0.0.1:8000\n\nTo access to the admin account :\n\nhttp://127.0.0.1:8000/admin \n\n## Use FLAKE8\nIn order to generate a flake8 report, run the following command :\n```\nflake8 --ignore=E501,W503 --format=html --htmldir=flake-report --exclude=venv,manage.py,db.sqlite3,litreview\n```\nOpen the html file into the flake-report repertory to show the report.\n## SCREENSHOT\n\n![screenshot0](https://user-images.githubusercontent.com/55999192/119537783-439ec500-bd3f-11eb-84f0-e27279db755e.PNG)\n\u003cbr\u003e\n![screenshot1](https://user-images.githubusercontent.com/55999192/119537708-2cf86e00-bd3f-11eb-977c-5252131a6b8e.PNG)\n\u003cbr\u003e\n![screenshot2](https://user-images.githubusercontent.com/55999192/119537835-51544a80-bd3f-11eb-8580-aaf6fd6c9993.PNG)\n\u003cbr\u003e\n![screenshot3](https://user-images.githubusercontent.com/55999192/120231186-bb6c6400-c205-11eb-848d-d3912bd5fe81.PNG)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpascaline-m%2Fpython_p09","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpascaline-m%2Fpython_p09","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpascaline-m%2Fpython_p09/lists"}