{% extends "base.html" %} {% block title %}Configuration - SEREACT Web Client{% endblock %} {% block content %}
API Configuration
The base URL of your SEREACT API server (without /api/v1)
Your SEREACT API key for authentication
Back
Configuration Help
API Base URL

This should point to your running SEREACT API server. Common examples:

  • http://localhost:8000 - Local development
  • https://your-api.example.com - Production server
  • http://192.168.1.100:8000 - Network server
API Key

You can obtain an API key by:

  • Using the Bootstrap process for initial setup
  • Creating one through the API Keys management page
  • Having an admin create one for you
{% if api_key %}
Connection Test

Configuration appears to be set. You can test the connection by trying to access any of the management pages.

{% else %}
No API Key Set

You need to set an API key to use this client. If this is your first time:

Start with Bootstrap
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}