Kaydet (Commit) 55daf3cd authored tarafından Batuhan Taşkaya's avatar Batuhan Taşkaya

move

üst 97b3dc6a
...@@ -36,11 +36,6 @@ Pipenv can be obtained by pip; ...@@ -36,11 +36,6 @@ Pipenv can be obtained by pip;
$ pip install pipenv $ pip install pipenv
``` ```
Use pipenv to activate your virtual environment if that exists else create one and activate.
```bash
$ pipenv shell
```
You need to declare **3 environment** variables. You need to declare **3 environment** variables.
```bash ```bash
export DJANGO_ENV="development" export DJANGO_ENV="development"
...@@ -64,6 +59,7 @@ $ cp config/settings/test.example.py config/settings/test.py ...@@ -64,6 +59,7 @@ $ cp config/settings/test.example.py config/settings/test.py
# development.py is not under revison control # development.py is not under revison control
# test.py is not under revison control # test.py is not under revison control
$ pipenv install $ pipenv install
$ pipenv shell
$ git init # now you can start your own repo! $ git init # now you can start your own repo!
``` ```
...@@ -73,6 +69,7 @@ or, you can use installer script: ...@@ -73,6 +69,7 @@ or, you can use installer script:
$ bash <(curl -fsSL https://raw.githubusercontent.com/vigo/django2-project-template/master/install.sh) $ bash <(curl -fsSL https://raw.githubusercontent.com/vigo/django2-project-template/master/install.sh)
$ cd YOUR_PROJECT/ $ cd YOUR_PROJECT/
$ pipenv install $ pipenv install
$ pipenv shell
$ git init # now you can start your own repo! $ git init # now you can start your own repo!
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment