Skip to content
This repository has been archived by the owner on Aug 12, 2020. It is now read-only.

Commit

Permalink
Upgrade README after upgrading to Django 2 and Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
sigurdga committed Feb 14, 2018
1 parent 74e34df commit 04efb0c
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,17 @@ fileupload/models.py as commented in the file.
Installation
============

* pip install -r requirements.txt (will install django and pillow)
* python manage.py migrate
* python manage.py runserver
* go to localhost:8000/upload/new/ and upload some files
I recommend to install this within a virtualenv.

```sh
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
./manage.py migrate
./manage.py runserver
```

And then go to localhost:8000 and try to upload some files.

License
=======
Expand Down

0 comments on commit 04efb0c

Please sign in to comment.