{"id":23882057,"url":"https://github.com/diptadeepray/website_on_local_server","last_synced_at":"2026-06-24T09:33:41.879Z","repository":{"id":269269503,"uuid":"906909852","full_name":"diptadeepray/website_on_local_server","owner":"diptadeepray","description":"Created a \"basic\" website using HTML, CSS and JS. Hosted the website on my local machine. The website is accessible by any device in the same Local Area Network.","archived":false,"fork":false,"pushed_at":"2024-12-22T09:52:20.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-23T01:13:14.784Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/diptadeepray.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":"2024-12-22T09:23:41.000Z","updated_at":"2024-12-22T09:52:23.000Z","dependencies_parsed_at":"2024-12-22T10:25:53.188Z","dependency_job_id":"ff2a3d02-5004-4ff1-97c0-8c27cd64f796","html_url":"https://github.com/diptadeepray/website_on_local_server","commit_stats":null,"previous_names":["diptadeepray/website_on_local_server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/diptadeepray/website_on_local_server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diptadeepray%2Fwebsite_on_local_server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diptadeepray%2Fwebsite_on_local_server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diptadeepray%2Fwebsite_on_local_server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diptadeepray%2Fwebsite_on_local_server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/diptadeepray","download_url":"https://codeload.github.com/diptadeepray/website_on_local_server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diptadeepray%2Fwebsite_on_local_server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34724746,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"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":[],"created_at":"2025-01-04T02:37:31.656Z","updated_at":"2026-06-24T09:33:41.861Z","avatar_url":"https://github.com/diptadeepray.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n    \n\u003chead\u003e\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \n    \n\u003c/head\u003e\n\u003cbody\u003e\n    \u003cdiv class=\"container\"\u003e\n        \n\u003ch3\u003eTo create virtual environment of python we need to write the following in the terminal:\u003c/h3\u003e\n\u003cstrong\u003e\u003ci\u003epython3 -m venv web_venv\u003c/i\u003e\u003c/strong\u003e\nweb_venv is the name of the virtual environment\n\n\u003ch3\u003eTo activate virtual environment:\u003c/h3\u003e\n\u003cstrong\u003e\u003ci\u003esource web_venv/bin/activate\u003c/i\u003e\u003c/strong\u003e\n\n\u003ch3\u003eTo make the website available on the Local Area Network:\u003c/h3\u003e\nThe following command must be written in the terminal (inside the directory which contains all the files and folders + inside the virtual environment to access all the modules):\n\u003cstrong\u003e\u003ci\u003eflask run --host=192.168.0.100 --port=5000\u003c/i\u003e\u003c/strong\u003e\n\u003ch3\u003eAfter this we can access the website from any device in the same Wi-Fi network using the following IP Address:\u003c/h3\u003e\n\u003ci\u003ehttp://192.168.0.100:5000\u003c/i\u003e\n\n\u003ch3\u003eYou can get the IP Address of the Macbook by running the following command in my terminal:\u003c/h3\u003e\n\u003cstrong\u003e\u003ci\u003eifconfig | grep inet\u003c/i\u003e\u003c/strong\u003e\n\n\n\n\u003ch3\u003eIf we just write the following in the terminal:\u003c/h3\u003e\n\u003cstrong\u003e\u003ci\u003eflask run\u003c/i\u003e\u003c/strong\u003e or\n\u003cstrong\u003e\u003ci\u003epython3 app.py\u003c/i\u003e\u003c/strong\u003e\n\u003ch3\u003eThen the website will be only accessible from that local machine using the IP Address which looks like this:\u003c/h3\u003e\n\u003ci\u003ehttp://127.0.0.1:5000\u003c/i\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiptadeepray%2Fwebsite_on_local_server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiptadeepray%2Fwebsite_on_local_server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiptadeepray%2Fwebsite_on_local_server/lists"}