Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammad-fiaz committed Jan 30, 2025
1 parent 3ad7c09 commit 6415ca2
Show file tree
Hide file tree
Showing 44 changed files with 8,630 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Python Bytecode
*.pyc
*.pyo
*.pyd
__pycache__/
*.so
*.dylib

# Distribution / Packaging
.Python
env/
venv/
*.egg-info/
dist/
build/
*.tar.gz
*.whl
*.zip

# PyInstaller
*.spec

# Unit test / coverage reports
.coverage
.tox/
.nox/
.coverage.*
*.log

# IDE and Editor files
.vscode/
.idea/
*.swp
*~
*.bak

# Jupyter Notebook checkpoints
.ipynb_checkpoints/

# PyCharm
.idea/

# macOS Finder attributes
.DS_Store

# Windows installer files
Thumbs.db

# VSCode
.vscode/
/node_modules/
/package.json/frontend/dist/
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/git_toolbox_blame.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/jsLibraryMappings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/pywebflow.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# pywebflow

pywebflow is a Python-based web framework to create node-based workflows. It allows users to easily build and manage node-based projects using Python.

> Note: This project is still in development and is not yet ready for production use.
## Contributing

Contributions are welcome! Please feel free to submit a Pull Request or open an issue if you have any suggestions or improvements.

## License

This project is licensed under the Apache-2.0 License. See the [LICENSE](LICENSE) file for details.
Binary file added bun.lockb
Binary file not shown.
2 changes: 2 additions & 0 deletions launch.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import webflow
webflow.launch()
Loading

0 comments on commit 6415ca2

Please sign in to comment.