1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-22 03:12:58 +03:00
A workspace for research teams
Go to file
2019-09-23 19:02:22 +03:00
back Add a TODO 2019-09-23 19:02:22 +03:00
docker Add libpq to Docker image dependencies (#334) 2019-07-12 20:48:40 +03:00
favicon Move the backend to /back/ (#240) 2018-12-09 23:02:03 +01:00
front Front/fix/jumps after reloading (#395) 2019-09-10 01:09:20 +04:00
scripts Move the backend to /back/ (#240) 2018-12-09 23:02:03 +01:00
.ghci Add .ghci 2019-08-26 09:35:53 +03:00
.gitignore Commit the JS bundle for the old frontend into the repo (#396) 2019-09-10 09:24:54 +03:00
.hlint.yaml Enable all unobjectionable extensions (#384) 2019-08-20 04:40:28 +00:00
.mergify.yml [mergify] Delete merged branches 2019-08-11 13:23:31 +03:00
.travis.yml Bump up chromo-driver 2019-09-10 16:05:14 +05:00
INSTALL.md Commit the JS bundle for the old frontend into the repo (#396) 2019-09-10 09:24:54 +03:00
Makefile Load into postgres and check it. (#383) 2019-08-23 07:49:44 +00:00
README.md Use a different database name for benchmarks 2019-09-23 19:01:06 +03:00
shell.nix Create tables with hasql (#328) 2019-07-11 22:12:14 +05:00
stack.yaml Migrate to to-1.2.0 (#382) 2019-08-19 10:41:34 +00:00
travis_key.enc Generate swagger.json for branches (#380) 2019-08-19 17:58:24 +03:00

Aelve Guide

BSD3 license

The production version is running at guide.aelve.com. The new frontend is being developed at staging.guide.aelve.com.

Installation instructions and the explanation of config variables (in config.json) are here: INSTALL.md.

Benchmarking

Start Postgres and create an empty database called guide-bench. An example with Docker:

docker run --name guide-db -e POSTGRES_PASSWORD=3 -e POSTGRES_DB=guide-bench -p 5432:5432 -d postgres

Build and run benchmarks:

stack bench

If you have been building with --fast previously, or using make, Stack will detect that Guide has to be recompiled with -O and do it automatically.