Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 527 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 527 Bytes

parse_pikabu

Backend part of pikagraphs project.

See how it works here -> https://pikastat.d3d.info

Install

1 Install postgres 2 Create db and user

postgres> CREATE USER username WITH ENCRYPTED PASSWORD 'password';
postgres> CREATE DATABASE database_name;
postgres> GRANT ALL ON DATABASE database_name TO username;
username> CREATE EXTENSION pg_trgm;

3 Install redis

Mirrors