https://github.com/danidmoura/daniblogs
This is a simple blog created with Django, including an authentication system and post management.
https://github.com/danidmoura/daniblogs
Last synced: 3 months ago
JSON representation
This is a simple blog created with Django, including an authentication system and post management.
- Host: GitHub
- URL: https://github.com/danidmoura/daniblogs
- Owner: DaniDMoura
- License: mit
- Created: 2025-02-27T01:06:48.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-02-27T01:59:22.000Z (3 months ago)
- Last Synced: 2025-02-27T02:25:36.231Z (3 months ago)
- Language: Python
- Homepage: https://daniblogs-production.up.railway.app/
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Django Blog
This is a simple blog created with Django, including an authentication system and post management.
## Technologies Used
- Python
- Django## Features
- User registration and login
- Create, edit, and delete posts
- List posts
- Post Details## Installation and Execution
1. Clone the repository:
```bash
git clone https://github.com/your-username/your-repo.git
cd your-repo
```2. Create and activate a virtual environment:
```bash
python -m venv venv
source venv/bin/activate # Linux/Mac
venv\Scripts\activate # Windows
```3. Install dependencies:
```bash
pip install -r requirements.txt
```4. Apply database migrations:
```bash
python manage.py migrate
```5. Run the server:
```bash
python manage.py runserver
```6. Access in your browser: `http://127.0.0.1:8000/`
## Contribution
1. Fork this repository
2. Create a new branch (`feature-my-feature`)
3. Make your changes and commit (`git commit -m 'Add my feature'`)
4. Push your changes (`git push origin feature-my-feature`)
5. Open a Pull Request## License
This project is under the MIT license. Feel free to use and modify it!
---
Made with ❤️ using Django!