https://github.com/pythonbyte/image-gallery
This project is an Image Gallery platform.
https://github.com/pythonbyte/image-gallery
Last synced: 25 days ago
JSON representation
This project is an Image Gallery platform.
- Host: GitHub
- URL: https://github.com/pythonbyte/image-gallery
- Owner: pythonbyte
- Created: 2021-01-24T21:05:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-24T21:24:28.000Z (over 5 years ago)
- Last Synced: 2025-03-05T11:35:34.611Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 238 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Image Gallery App
# Description
This project is a Image Gallery platform.
# Installing
First step of installation is having Pipenv installed in your machine, if you doesn't have just use the below command:
``` $ pip install pipenv ```
Now after cloned the repository all you need to do is:
```
$ cd imagegallery/
$ pipenv install
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver
```
# Using Docker
If you prefer to use docker to run the project after cloning the repository, run
this command to build the image and run the container.
``` docker-compose up --build ```
Remember that for the project fully work, you must configure the env vars from
the database and the AWS keys.
# Testing
To test the application use:
```$ python manage.py test```