An open API service indexing awesome lists of open source software.

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.

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!