刘凡 9ff4d1d109 add S3,archive,truncate il y a 2 ans
..
.github 9ff4d1d109 add S3,archive,truncate il y a 2 ans
django_drive 9ff4d1d109 add S3,archive,truncate il y a 2 ans
.gitignore 9ff4d1d109 add S3,archive,truncate il y a 2 ans
Pipfile 9ff4d1d109 add S3,archive,truncate il y a 2 ans
Pipfile.lock 9ff4d1d109 add S3,archive,truncate il y a 2 ans
README.md 9ff4d1d109 add S3,archive,truncate il y a 2 ans
requirements.txt 9ff4d1d109 add S3,archive,truncate il y a 2 ans

README.md

HitCount

Django-Drive

A demo Django project showcasing the use of Django Administration to upload files to Amazon S3.

This repository contains the code for this blogpost on StackAbuse.

Getting Started

Prerequisites

Kindly ensure you have the following installed on your machine:

Running the Application

  1. Clone the repository

    $ git clone https://github.com/ro6ley/django-drive.git
    
  2. Check into the cloned repository

    $ cd django-drive
    
  3. If you are using Pipenv, setup the virtual environment and start it as follows:

    $ pipenv install && pipenv shell
    
  4. Install the requirements

    $ pip install -r requirements.txt
    
  5. Run migrations

    $ python manage.py makemigrations
    $ python manage.py migrate
    
  6. Create a super user

    $ python manage.py createsuperuser
    
  7. Run the application

    $ python manage.py runserver
    
  8. Log in to the admin dashboard and populate Cars at http://localhost:8000/admin

  9. Navigate to http://localhost:8000/cars and view the cars

Contribution

Please feel free to raise issues using this template and I'll get back to you.

You can also fork the repository, make changes and submit a Pull Request using this template.