Skip to content
This repository was archived by the owner on Mar 12, 2022. It is now read-only.

Django Image Uploader

dalarm edited this page Sep 22, 2017 · 5 revisions

This wiki page is to document what the files under Image Uploader does and how to run it.

I created a google doc to make things neater. You guys can edit it as well. Here

It should briefly explain what each component of the image uploader does. There's actually a YouTube tutorial of the image uploader which I found helpful to look at. Video

How do I view the image uploader?

Go to http://ec2-54-173-153-28.compute-1.amazonaws.com:3000 The password as of right now is password123

Note: Python 3.4+ must be installed in addition to Django 1.10 and Django Rest Framework 3.5

Accessing the admin page

Go to http://ec2-54-173-153-28.compute-1.amazonaws.com:3000/admin/
The account information:
id: builducla
password: password123

Image uploader tutorial

  1. Clone the repository recursively.

  2. cd django-rest-imageupload-example

  3. mkdir uploaded_media # create a directory for the uploaded images

  4. virtualenv -p python3.4 venv # Note: python3.5 should also work

  5. source venv/bin/activate

  6. pip install -r requirements.txt

  7. cd django_rest_imageupload_backend

  8. python manage.py migrate

  9. python manage.py runserver # starts the server

Clone this wiki locally