Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ristep/django-starter


https://github.com/ristep/django-starter

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# API for my future application for restaurant and grocery online store, eventually

### Inherited from this [repository](https://github.com/ristep/StartUpDjangoOnDockerNginxPostgreSQL).

## From Original ReadMe

### Development

Uses the default Django development server.

1. Rename *.env.dev-sample* to *.env.dev*.
1. Update the environment variables in the *docker-compose.yml* and *.env.dev* files.
1. Build the images and run the containers:

```sh
$ docker-compose up -d --build
```

Test it out at [http://localhost:8000](http://localhost:8000). The "app" folder is mounted into the container and your code changes apply automatically.

### Production

Uses Gunicorn + Nginx.

1. Rename *.env.prod-sample* to *.env.prod* and *.env.prod.db-sample* to *.env.prod.db*. Update the environment variables.
1. Build the images and run the containers:

```sh
$ docker-compose -f docker-compose.prod.yml up -d --build
```

Test it out at [http://localhost:1337](http://localhost:1337). No mounted folders. To apply changes, the image must be rebuilt.