One day my girlfriend told me that she had nothing to wear... The project is a virtual closet in which you can load your clothes and see all possible combinations.
- Clone or download the project
git clone - Navigate to the project directory
cd ClothesCombiner- Configurate the .env.dist file
| Environment variable | Value |
|---|---|
| SECRET_KEY | Django Secret Key |
| DEBUG | Debug (True for debugging or False) |
| POSTGRES_HOST | PostgreSQL Host |
| POSTGRES_PORT | PostgreSQL Port |
| POSTGRES_USER | PostgreSQL Username |
| POSTGRES_PASSWORD | PostgreSQL Password |
| POSTGRES_DB_NAME | PostgreSQL Database Name |
- Copy .env.dist to .env
cp .env.dist .env
- To build project
docker-compose build- To run project
docker-compose up- Or Build and Run project
docker-compose up --build- To load sample dump
docker-compose run combiner make load_data- To create Super User (for admin panel)
docker-compose run combiner make admin- Open your browser and try it on
http://0.0.0.0:8000
- To open the Admin panel
http://0.0.0.0:8000/admin