https://github.com/nasumilu/feature-server
A php implmentation of the OGC API Feature
https://github.com/nasumilu/feature-server
discrete-feature gis spatial
Last synced: 4 months ago
JSON representation
A php implmentation of the OGC API Feature
- Host: GitHub
- URL: https://github.com/nasumilu/feature-server
- Owner: nasumilu
- License: apache-2.0
- Created: 2023-02-05T23:12:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-18T19:01:52.000Z (over 2 years ago)
- Last Synced: 2025-01-12T15:08:51.463Z (6 months ago)
- Topics: discrete-feature, gis, spatial
- Language: HTML
- Homepage:
- Size: 408 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nasumilu/feature-server
This project is a php implementation of the OGC API Features.
## Usage
### Clone the project
```shell
$ git clone https://github.com/nasumilu/feature-server.git
$ cd feature-server
```### Setup Development Environment
First copy the contained `.env` file to `.env.local` and edit to match the local development environment.
> The `.env.local` **MUST** never be committed since it contains
sensitive information about the local development environment. (e.g. database password, secret keys, ...)```shell
$ cp .env .env.local
$ nano .env.local
```
Next start the development server. It is assumed that Symfony CLI is installed. To find out more about installing
Symfony CLI, see [https://symfony.com/download](https://symfony.com/download)```shell
$ symfony server:start
```### Resources
- [Feature Server Documentation](/docs/index.md)
- [nasumilu/spatial-platform](https://github.com/nasumilu/spatial-platform)
- [Feature Server Web](https://github.com/nasumilu/feature-server-web)
- [OGC API - Features - Part 1: Core corrigendum](https://docs.opengeospatial.org/is/17-069r4/17-069r4.html)
- [Symfony](https://symfony.com/)
- [Doctrine DBAL](https://www.doctrine-project.org/projects/dbal.html)