qwikcrud
is a powerful command-line tool designed to enhance your backend development experience by automating the
generation of comprehensive RESTful APIs and admin interfaces. Say goodbye to the tedious task of
writing repetitive CRUD (Create, Read, Update, Delete) endpoints when starting a new project, allowing developers to
concentrate on the core business logic and functionality.
Warning
The generated application is not ready for production use. Additional steps are required to set up a secure and production-ready environment.
pip install qwikcrud
Before running the command-line tool, ensure the following environment variables are configured:
export OPENAI_API_KEY="your_openai_api_key"
export OPENAI_MODEL="your_openai_model" # Defaults to "gpt-3.5-turbo-1106"
To generate your application, open your terminal, run the following command and follow the instructions:
qwikcrud -o output_dir
- Task Management (prompt, generated app)
qwikcrud
is designed to support various frameworks and AI providers. Here's an overview of what has been accomplished and
what is planned for the future:
- FastAPI + SQLAlchemy
- Restful APIs
- Admin interfaces
- Authentication
- FastAPI + Beanie
- Spring Boot
- OpenAI
- Anthropic
- Ollama (self-hosted LLMs)
qwikcrud
makes one API call per prompt and add a system prompt of around 900 tokens to
your prompt. For example, with the OpenAI GPT-3.5-turbo-1106 model, it will cost around $0.003 to generate your application.
The cost may vary depending on the output length.
Contributions are welcome and greatly appreciated! If you have ideas for improvements or encounter issues, please feel free to submit a pull request or open an issue.
- The FastAPI + SQLAlchemy template is inspired by the excellent work in full-stack-fastapi-postgresql by [Sebastian Ramirez (tiangolo)].
qwikcrud
is distributed under the terms of the Apache-2.0 license.