|
| 1 | +<p align="center"> |
| 2 | + <pre style="background-color: #FFF;"> |
| 3 | + ________ __ ________ __ |
| 4 | +| \ \ | \ | \ |
| 5 | + \▓▓▓▓▓▓▓▓\▓▓ | ▓▓▓▓▓▓▓▓ ______ ______ _| ▓▓_ __ __ ______ ______ _______ |
| 6 | + | ▓▓ | \ | ▓▓__ / \ | \| ▓▓ \ | \ | \/ \ / \ / \ |
| 7 | + | ▓▓ | ▓▓ | ▓▓ \ | ▓▓▓▓▓▓\ \▓▓▓▓▓▓\\▓▓▓▓▓▓ | ▓▓ | ▓▓ ▓▓▓▓▓▓\ ▓▓▓▓▓▓\ ▓▓▓▓▓▓▓ |
| 8 | + | ▓▓ | ▓▓ | ▓▓▓▓▓ | ▓▓ ▓▓/ ▓▓ | ▓▓ __| ▓▓ | ▓▓ ▓▓ \▓▓ ▓▓ ▓▓\▓▓ \ |
| 9 | + | ▓▓ | ▓▓ | ▓▓ | ▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓ | ▓▓| \ ▓▓__/ ▓▓ ▓▓ | ▓▓▓▓▓▓▓▓_\▓▓▓▓▓▓\ |
| 10 | + | ▓▓ | ▓▓ | ▓▓ \▓▓ \\▓▓ ▓▓ \▓▓ ▓▓\▓▓ ▓▓ ▓▓ \▓▓ \ ▓▓ |
| 11 | + \▓▓ \▓▓ \▓▓ \▓▓▓▓▓▓▓ \▓▓▓▓▓▓▓ \▓▓▓▓ \▓▓▓▓▓▓ \▓▓ \▓▓▓▓▓▓▓\▓▓▓▓▓▓▓ |
| 12 | + |
| 13 | + </pre> |
| 14 | + <p align="center">Simple and Fast Geospatial Feature Server for PostGIS.</p> |
| 15 | +</p> |
| 16 | + |
| 17 | +<p align="center"> |
| 18 | + <a href="https://github.com/developmentseed/tifeatures/actions?query=workflow%3ACI" target="_blank"> |
| 19 | + <img src="https://github.com/developmentseed/tifeatures/workflows/CI/badge.svg" alt="Test"> |
| 20 | + </a> |
| 21 | + <a href="https://codecov.io/gh/developmentseed/tifeatures" target="_blank"> |
| 22 | + <img src="https://codecov.io/gh/developmentseed/tifeatures/branch/master/graph/badge.svg" alt="Coverage"> |
| 23 | + </a> |
| 24 | + <a href="https://github.com/developmentseed/tifeatures/blob/master/LICENSE" target="_blank"> |
| 25 | + <img src="https://img.shields.io/github/license/developmentseed/tifeatures.svg" alt="License"> |
| 26 | + |
| 27 | + </a> |
| 28 | +</p> |
| 29 | + |
| 30 | +--- |
| 31 | + |
| 32 | +**Source Code**: <a href="https://github.com/developmentseed/tifeatures" target="_blank">https://github.com/developmentseed/tifeatures</a> |
| 33 | + |
| 34 | +--- |
| 35 | + |
| 36 | + |
| 37 | +## Install |
| 38 | + |
| 39 | +```bash |
| 40 | +$ git clone https://github.com/developmentseed/tifeatures.git |
| 41 | +$ cd tifeatures |
| 42 | +$ python -m pip install -e . |
| 43 | +``` |
| 44 | + |
| 45 | +## Launch |
| 46 | + |
| 47 | +```bash |
| 48 | +$ pip install uvicorn |
| 49 | + |
| 50 | +$ uvicorn tifeatures.main:app |
| 51 | +``` |
| 52 | + |
| 53 | + |
| 54 | + |
| 55 | +### Configuration |
| 56 | + |
| 57 | +To be able to work, the application will need access to the PostGIS database. `tifeatures` uses [starlette](https://www.starlette.io/config/)'s configuration pattern which make use of environment variable and/or `.env` file to pass variable to the application. |
| 58 | + |
| 59 | +Example of `.env` file can be found in [.env.example](https://github.com/developmentseed/tifeatures/blob/master/.env.example) |
| 60 | + |
| 61 | +``` |
| 62 | +# you need define the DATABASE_URL directly |
| 63 | +DATABASE_URL=postgresql://username:[email protected]:5432/postgis |
| 64 | +``` |
| 65 | + |
| 66 | +## Contribution & Development |
| 67 | + |
| 68 | +See [CONTRIBUTING.md](https://github.com/developmentseed/tifeatures/blob/master/CONTRIBUTING.md) |
| 69 | + |
| 70 | +## License |
| 71 | + |
| 72 | +See [LICENSE](https://github.com/developmentseed/tifeatures/blob/master/LICENSE) |
| 73 | + |
| 74 | +## Authors |
| 75 | + |
| 76 | +Created by [Development Seed](<http://developmentseed.org>) |
| 77 | + |
| 78 | +## Changes |
| 79 | + |
| 80 | +See [CHANGES.md](https://github.com/developmentseed/tifeatures/blob/master/CHANGES.md). |
| 81 | + |
0 commit comments