# LocalBoards > Documentation for LocalBoards ## Content - [Privacy Policy](https://localboards.de/legal/privacy-policy) - [Site Notice](https://localboards.de/legal/site-notice): Florian Strasser Florian Strasser - Webdesign & Programmierung Max-Schmeling-Str. 1A 40597 Düsseldorf ## Docs - [Adjust Colors](https://localboards.de/raw/docs/adjust-colors.md): You can customize all UI colors in LocalBoards by setting environment variables. This allows you to match the application's appearance to your brand or personal preferences without modifying source files. - [Areas](https://localboards.de/raw/docs/areas.md): Areas in LocalBoards represent the columns within a board. They are used to organize and categorize tasks or cards based on their status or stage in a workflow. For example, you might have areas like "To Do," "In Progress," and "Done" to track the progress of tasks. - [Boards](https://localboards.de/raw/docs/boards.md): Boards are the core of LocalBoards. They represent a workspace where you can organize your tasks, projects, or ideas using the Kanban methodology. Each board consists of areas (columns) and cards (tasks). - [Cards](https://localboards.de/raw/docs/cards.md): Cards are the fundamental units of work in LocalBoards. They represent tasks, ideas, or items that need to be tracked and managed within a board. - [Comments](https://localboards.de/raw/docs/comments.md): Comments in LocalBoards allow users to discuss specific tasks, provide updates, or ask questions directly on cards. This feature enhances collaboration by enabling real-time communication among team members. - [Disable Signup](https://localboards.de/raw/docs/disable-signup.md): To disable the public signup functionality we introduced an enviroment flag NUXT_PUBLIC_SIGNUP. Set it to false to disable the signup functionality and true to activate it. Disabling the signup is actually recommended since it will keep other people and bots away from signup for your instance of LocalBoards. I guess most organisations will use it internally or with customers only. - [Getting started](https://localboards.de/raw/docs.md): LocalBoards is an open-source (MIT License), self-hosted Kanban board system. It allows users to create boards, invite collaborators, and manage Kanban cards. It also includes admin features for user management. All data is stored in your own database, with no reliance on external services. - [MCP Server](https://localboards.de/raw/docs/mcp-server.md): The LocalBoards MCP Server allows you to integrate LocalBoards functionality directly into your LLM applications. This enables you to automate workflows, manage boards, areas, cards, and comments programmatically. - [Migration](https://localboards.de/raw/docs/migration.md): On v0.10.0 we removed the better-auth integration and it is necessary to migrate to the new database structure and reset user passwords. - [Users](https://localboards.de/raw/docs/users.md): Admin Users are able to navigate to the users page and have a list of all registered users. You can create, update or delete an existing user from here. You can also change the role of an user to admin. ## Api - [Area](https://localboards.de/raw/api/area.md): The /api/data/area endpoint is used to manage areas within a board. It supports creating, updating, and deleting areas. - [Areas](https://localboards.de/raw/api/areas.md): The /api/data/areas endpoint is used to retrieve all areas that belong to a specific board. - [Board](https://localboards.de/raw/api/board.md): The api/data/board endpoint is used to manage boards. It supports retrieving, creating, updating, and deleting boards, as well as updating the order of areas within a board. - [Boards](https://localboards.de/raw/api/boards.md): The api/data/boards endpoint is used to retrieve a list of all available boards for the authenticated user. You can fetch your own boards or the boards that are shared with you. - [Card](https://localboards.de/raw/api/card.md): The api/data/card endpoint is used to manage cards within a board. It supports retrieving, creating, updating, and deleting cards. - [Move a card](https://localboards.de/raw/api/cardmove.md): The api/data/cardMove endpoint is used to move a card from one area to another within a board. - [Order card](https://localboards.de/raw/api/cardorder.md): The api/data/cardOrder endpoint is used to reorder a card within its current area. - [Cards](https://localboards.de/raw/api/cards.md): The api/data/cards endpoint is used to retrieve all cards that belong to a specific area within a board. - [Comment](https://localboards.de/raw/api/comment.md): The api/data/comment endpoint is used to manage comments for a specific card. It supports retrieving all comments for a card (GET), creating new comments (POST), updating existing comments (PUT), and deleting comments (DELETE). - [Authentification](https://localboards.de/raw/api.md): To authenticate at an API endpoint you will need to send an x-api-key header parameter with your request. You can generate an key within the user settings. - [Invite](https://localboards.de/raw/api/invite.md): The api/data/invite endpoint is used to manage invitations for a board. It supports retrieving, creating, and deleting invitations.