From 79fdc47d0eaea4cfebae8e2c25ca6266ff8a0dfa Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Fri, 12 Jul 2024 11:44:21 -0500 Subject: [PATCH] chore: remove links to gitter We'll now use github discussions for support. --- README.md | 1 - docker-hub-readme.md | 1 - docs/index.rst | 5 +---- docs/tutorials/tut0.rst | 13 ++++--------- 4 files changed, 5 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 0425787a35..dd2bd39519 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ ![Logo](static/postgrest.png "Logo") [![Donate](https://img.shields.io/badge/Donate-Patreon-orange.svg?colorB=F96854)](https://www.patreon.com/postgrest) -[![Join the chat at https://gitter.im/begriffs/postgrest](https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg)](https://gitter.im/begriffs/postgrest) [![Docs](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](http://postgrest.org) [![Docker Stars](https://img.shields.io/docker/pulls/postgrest/postgrest.svg)](https://hub.docker.com/r/postgrest/postgrest/) [![Build Status](https://github.com/postgrest/postgrest/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/PostgREST/postgrest/actions?query=branch%3Amain) diff --git a/docker-hub-readme.md b/docker-hub-readme.md index f10a3ef4f9..685a27537d 100644 --- a/docker-hub-readme.md +++ b/docker-hub-readme.md @@ -1,6 +1,5 @@ # PostgREST -[![Join the chat at https://gitter.im/begriffs/postgrest](https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg)](https://gitter.im/begriffs/postgrest) [![Donate](https://img.shields.io/badge/Donate-Patreon-orange.svg?colorB=F96854)](https://www.patreon.com/postgrest) [![Docs](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](http://postgrest.org) [![Build Status](https://github.com/postgrest/postgrest/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/PostgREST/postgrest/actions?query=branch%3Amain) diff --git a/docs/index.rst b/docs/index.rst index d197d84e56..221c03f02b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -16,9 +16,6 @@ PostgREST Documentation .. image:: https://img.shields.io/docker/pulls/postgrest/postgrest.svg :target: https://hub.docker.com/r/postgrest/postgrest/ -.. image:: https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg - :target: https://gitter.im/begriffs/postgrest - .. image:: https://img.shields.io/badge/Donate-Patreon-orange.svg?colorB=F96854 :target: https://www.patreon.com/postgrest @@ -110,7 +107,7 @@ PostgREST has a focused scope. It works well with other tools like Nginx. This f Getting Support ---------------- -The project has a friendly and growing community. For discussions, use the Github `discussions page `_ or join our `chat room `_. You can also report or search for bugs/features on the Github `issues `_ page. +The project has a friendly and growing community. For discussions, use the Github `discussions page `_. You can also report or search for bugs/features on the Github `issues `_ page. Release Notes ------------- diff --git a/docs/tutorials/tut0.rst b/docs/tutorials/tut0.rst index 145ad2dc3b..64e0292ca8 100644 --- a/docs/tutorials/tut0.rst +++ b/docs/tutorials/tut0.rst @@ -17,12 +17,7 @@ To make an API we'll simply be building a database. All the endpoints and permis By the end of this tutorial you'll have a working database, PostgREST server, and a simple single-user todo list API. -Step 1. Relax, we'll help -------------------------- - -As you begin the tutorial, pop open the project `chat room `_ in another tab. There are a nice group of people active in the project and we'll help you out if you get stuck. - -Step 2. Install PostgreSQL +Step 1. Install PostgreSQL -------------------------- If you're already familiar with using PostgreSQL and have it installed on your system you can use the existing installation (see :ref:`pg-dependency` for minimum requirements). For this tutorial we'll describe how to use the database in Docker because database configuration is otherwise too complicated for a simple tutorial. @@ -48,7 +43,7 @@ This will run the Docker instance as a daemon and expose port 5432 to the host s In this case, you will need to change the **first** of the two 5432 to something else, for example to :code:`5433:5432`. Remember to also adjust the port in your config file in Step 5! -Step 3. Install PostgREST +Step 2. Install PostgREST ------------------------- Using a Package Manager @@ -122,7 +117,7 @@ If everything is working correctly it will print out its version and the availab

-Step 4. Create Database for API +Step 3. Create Database for API ------------------------------- Connect to the SQL console (psql) inside the container. To do so, run this from your command line: @@ -185,7 +180,7 @@ Now quit out of psql; it's time to start the API! \q -Step 5. Run PostgREST +Step 4. Run PostgREST --------------------- PostgREST can use a configuration file to tell it how to connect to the database. Create a file :code:`tutorial.conf` with this inside: