Go to file
vera 87172b3c99 uprank 2021-02-07 00:26:29 -08:00
app uprank 2021-02-07 00:26:29 -08:00
.gitignore Ignore tags. 2020-11-15 01:18:49 +01:00
CONTRIBUTING.md First commit after re-import. 2020-11-07 15:34:48 +01:00
LICENSE First commit after re-import. 2020-11-07 15:34:48 +01:00
README.md s/run/run-dev/ 2020-11-11 20:52:36 +01:00
prod.ini Run 50 workers in prod. 2020-12-22 18:05:51 +01:00
requirements.txt Implement [[push]]. Hacky, but it seems to work to the point it feels 2021-01-14 00:47:56 +01:00
run-dev.sh Refactor dev/prod setup. 2020-11-07 16:12:31 +01:00
run-prod.sh Move run-prod.sh to use prod.ini. 2020-11-08 14:49:49 +01:00

README.md

To use

This Agora Server is meant to be used in conjunction with an Agora. An Agora is a collection of digital gardens and other information sources that are assembled into a distributed knowledge graph.

For an example Agora, and for more information on the Agora design, please refer to https://flancia.org/go/agora.

To see the Agora Server in action with the example Agora, please visit https://anagora.org.

To develop

Install OS dependencies:

$ apt-get install python3 python3-venv python3-pip

Then install Flask (and other required packages) inside a Python virtual environment in this directory:

python3 -m venv venv
. venv/bin/activate  # you'll need to run this every time before running the server.
pip install -r requirements.txt

Then run the development server:

./run-dev.sh

Please see CONTRIBUTING for instructions on how to contribute; it may require a one-time signing of a Google CLA.

Note this project is not an official Google project, and will not be supported by Google. It was simply initiated by flancian@ while employed at Google, and thus copyright belongs to Google as indicated in LICENSE and in various license headers. This should be of essentially no effect to you or its users (beyond the required signing of the CLA if you contribute), as it is released under an open license; please reach out to flancian@ or some other maintainer if this concerns you.

Optional: my git configuration

(Tangent) in case this is your first git contribution/you just haven't done it and you find this useful. This is my git config:

git config --global user.email "example@example.org"
git config --global user.name "Example"
git config --global alias.st status
git config --global alias.ci commit
git config --global alias.co checkout
git config --global alias.f "reset --hard HEAD"

About the project

As you might have inferred from the above, this project is based on Flask. /app hosts the Flask app. In it:

/templates are Jinja2 templates. __init__.py has the high level Flask setup. agora.py does rendering (url maps, views). db.py has logic to read/process notes. The db is actually the filesystem :)