{"id":17817661,"url":"https://github.com/codelixir/nought-pad","last_synced_at":"2026-01-21T16:33:41.836Z","repository":{"id":233798055,"uuid":"374750298","full_name":"codelixir/nought-pad","owner":"codelixir","description":"A blog website made using Django.","archived":false,"fork":false,"pushed_at":"2021-09-23T07:57:21.000Z","size":557,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T18:42:29.620Z","etag":null,"topics":["bootstrap","django","hacktoberfest","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codelixir.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}},"created_at":"2021-06-07T17:37:40.000Z","updated_at":"2021-10-03T12:00:26.000Z","dependencies_parsed_at":"2024-04-17T11:18:35.897Z","dependency_job_id":"20bce28e-2225-4922-bcfe-4aa4e1437901","html_url":"https://github.com/codelixir/nought-pad","commit_stats":null,"previous_names":["codelixir/nought-pad"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codelixir%2Fnought-pad","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codelixir%2Fnought-pad/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codelixir%2Fnought-pad/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codelixir%2Fnought-pad/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codelixir","download_url":"https://codeload.github.com/codelixir/nought-pad/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247685634,"owners_count":20979085,"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":["bootstrap","django","hacktoberfest","python"],"created_at":"2024-10-27T16:44:40.956Z","updated_at":"2026-01-21T16:33:36.812Z","avatar_url":"https://github.com/codelixir.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NoughtPad \u003c!-- omit in toc --\u003e\n\nThis is a basic blog website made using Django and Bootstrap. It is my first ever project in Django, hence the Nought(`[0]`) in NoughtPad.\n\n## Table of Contents \u003c!-- omit in toc --\u003e\n- [Features](#features)\n- [Screenshots](#screenshots)\n- [Technologies](#technologies)\n- [Setup Instructions](#setup-instructions)\n- [Project Status](#project-status)\n- [Contributions](#contributions)\n- [Sources](#sources)\n\n## Features\n\n- Sign-in/Sign-up\n- Adding, Editing, Deleting Notes\n  - Using RichText in Note body\n  - Uploading header images in Notes\n- Liking anyone's Notes\n- Author page\n  - Profile card with profile picture, bio and external links\n  - All Notes posted by the author\n- Edit profile/user settings\n\n## Screenshots\n\n![Home Page](docs/images/screenshots/home.png)\n![Author Page](docs/images/screenshots/author.png)\n\n## Technologies\n\nThis project is built with:\n\n* [Django 3.2.4](https://www.djangoproject.com/)\n* [Bootstrap 4.4.1](https://getbootstrap.com/docs/4.4/getting-started/introduction/)\n\n## Setup Instructions\n\nClone the repository:\n```sh\n$ git clone https://github.com/codelixir/nought-pad.git\n$ cd nought-pad\n```\nNow if you wish, you can create ans activate a virtual environment (recommended).\n\nYou also need a Secret Key for Django. A good way to do it is storing `SECRET_KEY` as an environment variable.\n```sh\n$ export SECRET_KEY='your_secret_key'\n```\nand then change line 24 of [`settings.py`](noughtpad/settings.py) to:\n```py\nSECRET_KEY = os.environ['SECRET_KEY']\n```\nAnother way of doing it is to put it in line 1 of [`keys.py`](noughtpad/keys.py), although this is not the best practice.\n\nThen install the dependencies:\n```sh\n$ pip3 install -r requirements.txt\n```\nOnce `pip` has finished downloading, you can run the server:\n```sh\n$ python3 manage.py runserver\n```\nand navigate to `http://127.0.0.1:8000/`\n\n## Project Status\n\nI will not be working on this project for now, but there are a number of improvements that can be made. For example:\n\n- [ ] Making the navbar sticky\n- [ ] Improving responsiveness\n- [ ] Adding dark mode\n- [ ] Making a separate profile page\n- [ ] Option to upload in-text images in notes\n- [ ] Adding comments to notes\n- [ ] Adding categories to notes\n\n## Contributions\n\nWant to contribute? Awesome!\n\nTo fix a bug or add/enhance a feature (out of those listed above, or anything else you find interesting), follow these steps:\n\n- Fork the repo\n- Create a new branch (`git checkout -b improve-feature`)\n- Make the appropriate changes in the files\n- Add changes to reflect the changes made\n- Commit your changes (`git commit -am 'Improve feature'`)\n- Push to the branch (`git push origin improve-feature`)\n- Create a Pull Request\n\nIf you want to add a feature not listed under [project status](#project-status), please open an issue [here](https://github.com/codelixir/nought-pad/issues/new) before working on it.\n\n## Sources\n\nThis project is inspired by a Django tutorials playlist by [Codemy](https://codemy.com/).\n\n---\n[![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodelixir%2Fnought-pad","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodelixir%2Fnought-pad","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodelixir%2Fnought-pad/lists"}