Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bahattincinic/django-101
Django 101 sunumu örnek Uygulaması.
https://github.com/bahattincinic/django-101
Last synced: about 1 month ago
JSON representation
Django 101 sunumu örnek Uygulaması.
- Host: GitHub
- URL: https://github.com/bahattincinic/django-101
- Owner: bahattincinic
- License: mit
- Created: 2015-04-14T14:44:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-09T08:36:35.000Z (over 7 years ago)
- Last Synced: 2023-04-27T16:49:00.112Z (over 1 year ago)
- Language: Python
- Homepage: http://slides.com/bahattincinic/django-introduction/
- Size: 1.24 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![django101av_400x400a](https://cloud.githubusercontent.com/assets/1684999/7142166/27a82dc8-e2df-11e4-8537-d4db8ab90b3c.png)
Django 101 sunumu örnek uygulaması.
[![Build Status](https://travis-ci.org/bahattincinic/django-101.svg?branch=master)](https://travis-ci.org/bahattincinic/django-101)
**Sunum:** http://slides.com/bahattincinic/django-introduction/
**Ekran Görüntüleri:** [Link](screenshots.md)
### Kurulum
**Pip ve virtualenv kurulumu**
sudo apt-get install python-pip python-dev build-essential
sudo apt-get install python-pip
sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv**Virtualenv oluşturmak**
virtualenv env
source env/bin/activate**Proje klonlanması ve gereksinimlerin kurulması**
git clone [email protected]:bahattincinic/django-101.git
pip install -r django-101/requirements/dev.txt**Ayarların özelleştirilmesi**
cp django-101/slideshare/settings/settings_local.py-dist django-101/slideshare/settings/settings_local.py
**Migrationların yapılması ve Projenin çalıştırılması**
cd django-101/
python manage.py migrate
python manage.py runserver**Testlerin çalıştırılması**
python manage.py test
**Admin için Superuser oluşturmak**
python manage.py createsuperuser
**Örnek Verileri içeri aktarmak için**
python manage.py loaddata speaker
python manage.py loaddata presentation