Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ristep/webmenu_api
Api for web menu
https://github.com/ristep/webmenu_api
Last synced: about 2 months ago
JSON representation
Api for web menu
- Host: GitHub
- URL: https://github.com/ristep/webmenu_api
- Owner: ristep
- License: mit
- Created: 2023-10-29T09:11:56.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-02T19:06:14.000Z (10 months ago)
- Last Synced: 2024-03-02T20:25:57.786Z (10 months ago)
- Language: HTML
- Homepage: https://wbm-api.sman.cloud/api/
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.