From 64116e58a57839283f1bf197ffbf4f7fb093c1f9 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sun, 19 Nov 2017 18:01:34 +0000 Subject: [PATCH] Add a readme. --- README.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..86b3870 --- /dev/null +++ b/README.md @@ -0,0 +1,51 @@ +A skeleton app for running your own [EteSync](https://www.etesync.com) server + +# Installation + +To setup your own EteSync server based on the git version just clone this +git repository and set up the django app: + +``` +git clone https://github.com/etesync/server-skeleton.git + +cd server-skeleton + +# Set up the environment and deps +virtualenv .venv +source .venv/bin/activate + +pip install -r requirements.txt +``` + +Set the django ```SECRET_KEY``` and ```ALLOWED_HOSTS``` in [the settings file](etesync_server/settings.py). +For more information on these please refer to the [django deployment checklist](https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/). + +Now you can initialise our django app + +``` +./manage.py migrate +``` + +And you are done! You can now either run the debug server just to see everything works as expected by running: + +``` +./manage.py runserver 0.0.0.0:8000 +``` + +Using the debug server is production is not recommended, so you should configure your webserver to serve +etesync (with TLS). An example on how to do so with nginx can be found [here](http://uwsgi-docs.readthedocs.io/en/latest/tutorials/Django_and_nginx.html). + +# Usage + +Create yourself an admin user: + +``` +./manage.py createsuperuser +``` + +At this stage you can either just use the admin user, or better yet, go to: ```www.your-etesync-install.com/admin``` +and create a non-privileged user that you can use. + +That's it! + +Now all that's left is to open the EteSync app, add an account, and set your custom server address under the "advance" section.