> For the complete documentation index, see [llms.txt](https://docs.djangomango.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.djangomango.com/get-started-with-your-product/run-your-project.md).

# Running your Project

After performing your [Basic Configuration](/get-started-with-your-product/basic-configuration.md), it's time to run your project. Towards that, we provide multiple Docker configurations to make it easy to get up and running. These configurations include everything you need to replicate the same environments your product was developed and tested on.

### Docker Configurations

We include three Docker configurations with each of our products. One for development, and two for production. For the production configurations, you have the option of using a configuration which leverages a secure SSL setup, and one which does not. The commands to run each configuration are shown below.

Development Configuration:

```
docker-compose -f docker-compose.dev.yml --env-file dev.env up
```

Production Configuration (without SSL):

```
docker-compose -f docker-compose.prod.yml --env-file prod.env up
```

Production Configuration (with SSL):

```
docker-compose -f docker-compose.prod.ssl.yml --env-file prod.env up
```

The two production configurations will create and leverage a NGINX configuration to serve your static content. The SSL configuration will also leverage a service called [Let's Encrypt](https://letsencrypt.org/) to issue you a secure certificate so you can offer a secure (https) address. A word of warning however, there is a max limit on the amount of certificates you can be issued. So be cautious in deleting and rebuilding your docker configuration too often!
