/cloud_drive_app

A simple cloud-based document storage (cloud drive) application. A user can store the documents on Amazon S3.

Primary LanguagePythonMIT LicenseMIT

cloud_drive_app

Before you started you need to setup Amazon S3 and create a bucket for storing the documents.

To run this application:

Install the requirements:

pip install -r requirements.txt

Run migrations:

python manage.py makemigrations
python manage.py migrate

Create a super user:

python manage.py createsuperuser

Create a static file on S3:

python manage.py collectstatic

Run the application:

python manage.py runserver