Split into 2 versions

This commit is contained in:
Elliot Matson 2021-11-27 16:53:48 -06:00
parent a989c87d42
commit bead317e29

View File

@ -1,5 +1,5 @@
# Davinci Resolve Project Server
Simple Resolve project server with automatic backups and an updated Postgresql version
Simple Resolve project server with automatic backups
## Table of Contents
- [Davinci Resolve Project Server](#davinci-resolve-project-server)
@ -7,9 +7,7 @@ Simple Resolve project server with automatic backups and an updated Postgresql v
- [Introduction](#introduction)
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
- [Different Postgres versions](#different-postgres-versions)
## Introduction
@ -28,25 +26,10 @@ Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.
pip install foobar
```
## Usage
```python
import foobar
## Different Postgres versions
Generally, Resolve is most compatible with the latest Postgres 9.5 version (9.5.25 as of writing). The Windows version of Resolve uses 9.5.4, and the Mac version uses 9.5.19. Version 9.5 is EOL, and 9.5.4 in particular has a lot of vulnerabilities that make it insecure. Since most people are still using the default credentials (postgres:DaVinci) for their server, security generally isn't the biggest issue, but if you are trying to secure your project server, you will want to move to a supported version of Postgres.
# returns 'words'
foobar.pluralize('word')
Resolve still uses a legacy feature that has been removed in Postgres 12, so the latest major version that is useable is 11, which will be maintained until November 9, 2023.
# returns 'geese'
foobar.pluralize('goose')
# returns 'phenomenon'
foobar.singularize('phenomena')
```
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
## License
[MIT](https://choosealicense.com/licenses/mit/)