mirror of
https://github.com/pretix/pretix.git
synced 2026-02-03 02:12:27 +00:00
123 lines
4.4 KiB
HTML
123 lines
4.4 KiB
HTML
{% extends "layout.html" %}
|
|
{% set title = 'Overview' %}
|
|
{% block body %}
|
|
<h1>Welcome to our developer documentation!</h1>
|
|
<p>
|
|
We work hard to make this website contain all information that you need to work with our API or source code.
|
|
Of course, this documentation will never be perfect or complete, but if there is anything unclear
|
|
or anything specific that you miss here, that's a bug and we'd be happy if you'd
|
|
<a href="https://github.com/pretix/pretix/issues/new">let us know</a>.
|
|
</p>
|
|
|
|
<h2>What you can find here</h2>
|
|
|
|
<div class="sectionbox">
|
|
<div class="icon">
|
|
<a href="api/index.html">
|
|
<span class="fa fa-plug fa-fw"></span>
|
|
</a>
|
|
</div>
|
|
<div class="text">
|
|
<a href="api/index.html">
|
|
<strong>REST API</strong>
|
|
</a>
|
|
<p>
|
|
Documentation and reference of the RESTful API exposed by pretix for interaction with external
|
|
components.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="sectionbox">
|
|
<div class="icon">
|
|
<a href="development/index.html">
|
|
<span class="fa fa-wrench fa-fw"></span>
|
|
</a>
|
|
</div>
|
|
<div class="text">
|
|
<a href="development/index.html">
|
|
<strong>Developer docs</strong>
|
|
</a>
|
|
<p>Get information on how to contribute to pretix itself and how to build plugins that interact with
|
|
pretix.</p>
|
|
</div>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
|
|
|
|
<h2>Other sources of documentation</h2>
|
|
<div class="sectionbox">
|
|
<div class="icon">
|
|
<a href="https://docs.pretix.eu" target="_blank">
|
|
<span class="fa fa-user fa-fw"></span>
|
|
</a>
|
|
</div>
|
|
<div class="text">
|
|
<a href="https://docs.pretix.eu" target="_blank">
|
|
<strong>User docs</strong>
|
|
</a>
|
|
<p>Go here to find information on how to configure and use pretix as an event organizer.</p>
|
|
</div>
|
|
</div>
|
|
<div class="sectionbox">
|
|
<div class="icon">
|
|
<a href="https://docs.pretix.eu/self-hosting/">
|
|
<span class="fa fa-server fa-fw"></span>
|
|
</a>
|
|
</div>
|
|
<div class="text">
|
|
<a href="https://docs.pretix.eu/self-hosting/">
|
|
<strong>Administrator docs</strong>
|
|
</a>
|
|
<p>Find out how to install pretix on your own server and how to maintain an installation of pretix.</p>
|
|
</div>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
|
|
<h2>Useful links</h2>
|
|
|
|
<div class="sectionbox">
|
|
<div class="icon">
|
|
<a href="https://pretix.eu" target="_blank">
|
|
<span class="fa fa-globe fa-fw"></span>
|
|
</a>
|
|
</div>
|
|
<div class="text">
|
|
<a href="https://pretix.eu" target="_blank">
|
|
<strong>Project website</strong>
|
|
</a>
|
|
<p>pretix.eu is the central entry-point to the pretix project and also the home of the commercial hosting
|
|
service available.</p>
|
|
</div>
|
|
</div>
|
|
<div class="sectionbox">
|
|
<div class="icon">
|
|
<a href="https://github.com/pretix/pretix" target="_blank">
|
|
<span class="fa fa-github fa-fw"></span>
|
|
</a>
|
|
</div>
|
|
<div class="text">
|
|
<a href="https://github.com/pretix/pretix" target="_blank">
|
|
<strong>GitHub repository</strong>
|
|
</a>
|
|
<p>Our main source code repository contains all code that is part of pretix as well as some plugins and the
|
|
source for this documentation.</p>
|
|
</div>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
<div class="sectionbox">
|
|
<div class="icon">
|
|
<a href="https://pretix.eu/about/en/blog/" target="_blank">
|
|
<span class="fa fa-newspaper-o fa-fw"></span>
|
|
</a>
|
|
</div>
|
|
<div class="text">
|
|
<a href="https://pretix.eu/about/en/blog/" target="_blank">
|
|
<strong>Project blog</strong>
|
|
</a>
|
|
<p>This important information source contains all release notes for all stable releases of pretix as well as
|
|
general news on pretix as a project.</p>
|
|
</div>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
|
|
{% endblock %} |