Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openprocurement/market.prozorro.ua
https://github.com/openprocurement/market.prozorro.ua
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/openprocurement/market.prozorro.ua
- Owner: openprocurement
- License: apache-2.0
- Created: 2019-11-19T11:41:17.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-22T13:26:40.000Z (over 4 years ago)
- Last Synced: 2024-11-09T11:35:14.760Z (2 months ago)
- Language: Python
- Size: 963 KB
- Stars: 2
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MARKET PROZORRO UA
REST API application for managing Criteria and Profile## Requirements
To run this application on system must be installed [Docker](https://www.docker.com/)## Run
To start application make you follow next steps:
1. Clone this repository
```bash
git clone [email protected]:openprocurement/market.prozorro.ua.git market_prozorro_ua
```
2. Changed working directory
```bash
cd market_prozorro_ua
```
3. Run application
```bash
docker-compose up --build --force-recreate -d
```
4. Run migrations
```bash
docker-compose exec web bash -c './manage.py migrate'
```## Authorization
Included test storage with following credentials:
| Username | Password |
| -------- | ------------- |
| admin | adminpassword |
| user | userpassword |## Update
1. Stop containers
```bash
docker-compose down
```
2. Pull changes from repository
```bash
git pull origin master
```
3. Run application
```bash
docker-compose up --build --force-recreate -d
```
4. Run migrations
```bash
docker-compose exec web bash -c './manage.py migrate'
```