Quick setup
This guide assumes you’ve completed the Installation steps. We’ll get your Ayase Quart instance running in just a few commands.Verify configuration
Ensure your If successful, you should see
config.toml and boards.toml files are properly configured with your database connection and desired boards.Check that your boards are properly set up:ok.Launch the webserver
Start Ayase Quart with Hypercorn:
The
-w 2 flag specifies 2 worker processes. Adjust based on your server’s capabilities. The -b flag sets the bind address and port.Basic usage
Browsing archives
Once your instance is running, you can:- View board index - Click on any board to see threads
- Browse catalog - Switch to catalog view for visual thread browsing
- Read threads - Click any thread to view full posts and replies
- Hover over quotelinks - Preview referenced posts inline
Searching
Ayase Quart provides two types of search:- SQL search
- Full-text search
Navigate to the search page and use the search form. You can search by:
- Comment text
- Subject
- Username
- Tripcode
- Date range
- File properties (filename, dimensions, etc.)
Moderation
The moderation system requires authentication. The default credentials are:- Username:
admin - Password:
admin
- Web UI - Cookie-based authentication with math captcha
- REST API - Bearer token authentication (create token via POST to
/api/v1/login) - CLI - Direct server access, no authentication needed
CLI commands
Ayase Quart includes a CLI for various administrative tasks:Report management
View report count:Preparation commands
Generate secret key:Search index management
Create search index:Configuration quick reference
Common settings
Key configuration options inconfig.toml:
Media configuration
Configure how images and thumbnails are served:Production deployment
For production use, set up a systemd service:Updating Ayase Quart
To update your installation:Check if new fields have been added or removed in
config.toml after updating. Compare with config.tpl.toml.Troubleshooting
Server won’t start
Check that:- Your database is accessible
- Ports aren’t already in use
- SSL certificates exist (if configured)
- Config files are valid TOML
Database connection errors
MySQL access denied error:No boards appearing
Verify your boards configuration:API documentation
Once running, visit/docs on your instance for interactive API documentation:
- Thread and post retrieval
- Search operations
- Moderation actions
- Report management
Next steps
Now that your instance is running:- Explore the search features
- Set up full-text search for better performance
- Configure moderation tools
- Customize the theme and branding
- Set up automated backups of your moderation database
- Configure a reverse proxy (nginx, caddy) for production use