https://github.com/simoneas02/my-first-blog
:unicorn: Aplicação com Django para fins de mentoria do evento Django Girls Recife-PE
https://github.com/simoneas02/my-first-blog
django django-application django-framework python python3
Last synced: about 1 month ago
JSON representation
:unicorn: Aplicação com Django para fins de mentoria do evento Django Girls Recife-PE
- Host: GitHub
- URL: https://github.com/simoneas02/my-first-blog
- Owner: simoneas02
- License: mit
- Created: 2017-06-15T09:55:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-17T05:20:08.000Z (almost 9 years ago)
- Last Synced: 2025-06-04T03:38:03.139Z (about 1 year ago)
- Topics: django, django-application, django-framework, python, python3
- Language: Python
- Homepage:
- Size: 256 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Django my First Blog
> :unicorn: Aplicação com Django para fins de mentoria do evento Django Girls Recife-PE
## Instale as depndências do projeto
**0 -** Pré-requisitos
- [Python 3.4](https://www.python.org/downloads/)
**1 -** Clone o projeto e instale as dependências:
```sh
$ git clone https://github.com/simoneas02/my-first-blog.git
$ cd my-first-blog.git/mysite/
$ C:\Python34\python -m venv myvenv
$ myvenv\Scripts\activate
$ pip install -r requirements.txt
```
**2 -** Inicie a aplicação localmente:
```sh
$ python manage.py runserver
```
Go to: [localhost:8080](http://127.0.0.1:8000/)
## Stack
## Estrutura de Pastas
.
├── mysite/
│ ├── blog/
│ │ ├── __init__.py
│ │ ├── admin.py
│ │ ├── migrations/
│ │ │ ├── 0001_initial.py
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ ├── tests.py
│ │ └── views.py
│ ├── manage.py
│ └── mysite/
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── requirements.txt
└── uteis/
├── docs
│ └── help.md
└── img
└── magic-pony-django-.png
## Tarefas Automatizadas
## Sobre Contrubuir
Encontre em nossas [issues](https://github.comsimoneas02/my-first-blog.git/issues/) os próximos passos do projeto ;)
Quer contribuir? [siga essas recomendações](https://https://github.comsimoneas02/my-first-blog.git/issues/blob/master/CONTRIBUTING.md).
## Histórico
Veja [Releases](https://github.comsimoneas02/my-first-blog.git/releases) para detalhes de changelog.
## Licença
[MIT License](https://github.comsimoneas02/my-first-blog.git/blob/master/license.md) © [Simone Amorim](https://simoneas02.github.io/)