저렴한(또는 무료) 사용자 지정 확장을 사용하여 PostgreSQL을 어디에서 호스팅할 수 있습니까?
나는 Heroku에서 호스팅할 수 있지만 10k 행이 제한되어 있을 뿐만 아니라 사용자 지정 확장도 없습니다.
어쨌든 나는 레포를 오픈 소스로 만들었다. Anki를 만드는 데 사용할 수 있습니다. 하지만 더 많은 서비스를 제공하고 더 많은 청중을 확보하고 싶습니다. (하지만 지갑에 너무 많은 비용을 들이고 싶지는 않습니다.)
파타라폴 / cj클럽
한일문자 및 어휘 동아리
무슨 확장? 내 Dockerfile을 볼 수 있습니다.
# Based on debian-slim
FROM postgres:12
RUN mkdir -p /app
RUN apt-get update
# pgroonga extension
# Does not officially support alpine
RUN apt-get install -y wget
RUN wget https://packages.groonga.org/debian/groonga-apt-source-latest-buster.deb
RUN apt install -y -V ./groonga-apt-source-latest-buster.deb
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ buster-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
RUN apt-get update
RUN apt-get install -y -V postgresql-12-pgdg-pgroonga
RUN apt-get install -y -V groonga-tokenizer-mecab
RUN apt-get install -y -V groonga-token-filter-stem
RUN apt-get install -y git make
# postgres-json-schema extension
WORKDIR /app
RUN git clone --depth 1 https://github.com/gavinwahl/postgres-json-schema.git
RUN cd postgres-json-schema && make install
# groonga-tokenizer-friso extension
# WORKDIR /app
# RUN apt-get install -y build-essential automake libtool libgroonga-dev
# RUN git clone --depth 1 https://github.com/kenhys/groonga-tokenizer-friso.git
# RUN wget -c https://github.com/lionsoul2014/friso/archive/v1.6.4-release.tar.gz -O - | tar -xz
# RUN cd friso-1.6.4-release/src && make && make install
# RUN cd groonga-tokenizer-friso && ./autogen.sh && ./configure --with-friso=/usr --with-friso-ini=../friso-1.6.4-release/friso.ini && make && make install
# pg_jieba extension
WORKDIR /app
RUN apt-get install -y cmake build-essential postgresql-server-dev-12
RUN git clone --depth 1 https://github.com/jaiminpan/pg_jieba.git
WORKDIR /app/pg_jieba
RUN git submodule update --init --recursive
RUN mkdir build && cd build && cmake -DPostgreSQL_TYPE_INCLUDE_DIR=/usr/include/postgresql/12/server .. && make && make install
Reference
이 문제에 관하여(저렴한(또는 무료) 사용자 지정 확장을 사용하여 PostgreSQL을 어디에서 호스팅할 수 있습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/patarapolw/what-can-i-host-postgresql-with-custom-extensions-for-cheap-or-free-4gn4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)