Djuix.io Docs
Djuix.io
Seamless Transition from GUI to Code
Djuix doesn't just simplify API creation; it also provides a bridge to traditional development environments. With the download feature, you can take your Djuix-created project and continue working on it in your preferred local development setup.
How to Export Your Project
- Navigate to the Djuix dashboard and locate the "Download" button in the side navigation bar under the Plugins section.
- Click on the "Create Download Link" button.
- Djuix will package your entire project, including all models, views, serializers, and configurations.
- Once the packaging is complete, you will receive a download link for your project.
- Click the provided link, and your project will be downloaded automatically.
Download Project.mov
Note: Download links expires after 3 days
What's Included in the Export
When you export your Djuix project, you'll receive a complete Django project structure, including:
manage.py
file
- Project settings
- All app directories with their respective:
- Models
- Views
- Serializers
- URLs
- Any custom functions you've created
- Requirements file listing all necessary dependencies
Working with Your Exported Project
Once you've downloaded your project:
You can check the README.md for instructions or follow the outline below.
- Unzip the file to your desired location.
- Open the project in your preferred IDE (e.g., Visual Studio Code).
- Set up a virtual environment (recommended).
- Install the required dependencies using the provided
requirements.txt
file.
- You're now ready to run and further develop your project locally!