{"id":14988712,"url":"https://github.com/foxy4096/vitary","last_synced_at":"2025-04-12T00:22:48.781Z","repository":{"id":45220524,"uuid":"433826044","full_name":"foxy4096/Vitary","owner":"foxy4096","description":"😺 A social media made with Django, Bulma and HTMX.  🎉","archived":false,"fork":false,"pushed_at":"2024-06-10T16:10:46.000Z","size":17221,"stargazers_count":18,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-25T20:07:17.203Z","etag":null,"topics":["bulma","bulma-css","django","htmx","javascript","jquery","python","python3","wsgi"],"latest_commit_sha":null,"homepage":"http://bit.ly/vitary","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/foxy4096.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://www.buymeacoffee.com/foxy4096","https://buymeacoffee.com/rainboestrykr"]}},"created_at":"2021-12-01T12:53:20.000Z","updated_at":"2025-03-21T07:46:30.000Z","dependencies_parsed_at":"2024-06-10T18:40:13.797Z","dependency_job_id":null,"html_url":"https://github.com/foxy4096/Vitary","commit_stats":null,"previous_names":["visualway/vitary","foxy4096/vitary"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxy4096%2FVitary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxy4096%2FVitary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxy4096%2FVitary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxy4096%2FVitary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/foxy4096","download_url":"https://codeload.github.com/foxy4096/Vitary/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248498384,"owners_count":21114111,"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":["bulma","bulma-css","django","htmx","javascript","jquery","python","python3","wsgi"],"created_at":"2024-09-24T14:17:05.072Z","updated_at":"2025-04-12T00:22:48.752Z","avatar_url":"https://github.com/foxy4096.png","language":"CSS","funding_links":["https://www.buymeacoffee.com/foxy4096","https://buymeacoffee.com/rainboestrykr"],"categories":[],"sub_categories":[],"readme":"# Vitary\r\n\r\nA simple social media made with Django\r\n\r\n[![CodeQL](https://github.com/foxy4096/Vitary/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/foxy4096/Vitary/actions/workflows/codeql-analysis.yml)\r\n\r\n## Installation :hammer_and_wrench:\r\n\r\nGet the source code 💻\r\n\r\n```\r\ngit clone https://github.com/foxy4096/Vitary.git\r\n```\r\n\r\nGo the the dir 📁\r\n\r\n```\r\ncd Vitary\r\n```\r\n\r\nAdd the enviroment variables :gear:\r\n\r\nIn Powershell or terminal 💻\r\n\r\n```\r\ntouch Vitary/.env\r\n```\r\n\r\nIn `.env` add the following variables ➕\r\n\r\n```\r\nDEBUG=True or False\r\nEMAIL_ADDRESS [Optional if DEBUG is True]\r\nEMAIL_PASSWORD [Optional if DEBUG is True]\r\nSITE_ID [Optional if DEBUG is True]\r\nSECURE_SSL_REDIRECT (Bool) [Optional if DEBUG is True]\r\nCSRF_COOKIE_SECURE (Bool) [Optional if DEBUG is True]\r\n```\r\n\r\nGet the Google Drive JSON key from [Here](https://django-googledrive-storage.readthedocs.io/en/latest/)\r\n\r\nRename it to `GOOGLE_DRIVE_KEY_FILE.json` and Put it in the Base Directory (At the ame level where the `manage.py` is located)\r\n\r\nMake a virtualenv 📡\r\n\r\n```\r\npip install virtualenv\r\n```\r\n\r\nand\r\n\r\n```\r\nvirtualenv venv\r\n```\r\n\r\nInstall the dependencies 🔨\r\n\r\n```\r\npip install -r req.txt\r\n```\r\n\r\nMake Migrations 💿\r\n\r\nOn Windows:\r\n\r\n```\r\npython manage.py makemigrations\r\n```\r\n\r\nOn \\*nix systemm:\r\n\r\n```\r\npython3 manage.py makemigrations\r\n```\r\n\r\nMigrate the database 🏃‍♂️\r\n\r\nOn Windows:\r\n\r\n```\r\npython manage.py migrate\r\n```\r\n\r\nOn \\*nix systemm:\r\n\r\n```\r\npython3 manage.py migrate\r\n```\r\n\r\nCreate the superuser 🤵\r\n\r\nOn Windows :\r\n\r\n```\r\npython manage.py createsuperuser\r\n```\r\n\r\nOn \\*nix systemm:\r\n\r\n```\r\npython3 manage.py createsuperuser\r\n```\r\n\r\nRun the server 🚀\r\n\r\nOn Windows:\r\n\r\n```\r\npython manage.py runserver\r\n```\r\n\r\nOn \\*nix systemm:\r\n\r\n```\r\npython3 manage.py runserver\r\n```\r\n\r\n\u003chr\u003e\r\n\r\n## Tools 🔧\r\n\r\n - [Python](https://python.org) the programming language\r\n\r\n - [Git](http://git-scm.com) Version Control System\r\n\r\n - [Visual Studio Code](https://code.visualstudio.com) Free source code editor","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxy4096%2Fvitary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffoxy4096%2Fvitary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxy4096%2Fvitary/lists"}