17 Commits

Author SHA1 Message Date
Axel Wretman
360cdc46f2 Added Contribution markdown file and a section in the readme. 2025-09-09 15:06:23 +02:00
Richard Osborne
70acc528ac Merge pull request #8 from The-Low-Code-Foundation/revert-6-patch-1
Revert "Fix linux builds"
2024-12-29 10:03:12 +01:00
Richard Osborne
c6460b235a Revert "Fix linux builds" 2024-12-29 10:01:32 +01:00
Richard Osborne
3f5addb251 Merge pull request #6 from dzervas/patch-1
Fix linux builds
2024-12-28 22:05:46 +01:00
Richard Osborne
a87a7fd624 Merge pull request #7 from nicholas-mn/main
docs(README): add arch linux install instructions and fix name
2024-12-28 21:44:48 +01:00
Nicholas
73b6ba85ef docs(README): add arch linux install instructions and fix name 2024-12-27 21:11:07 +01:00
Dimitris Zervas
0471a19ccf Fix package.json 2024-12-19 21:37:42 +02:00
Dimitris Zervas
f69b5ad250 Fix app categories 2024-12-19 21:08:37 +02:00
Dimitris Zervas
0f319f4d17 Show the BUILD_AS_DIR state 2024-12-19 20:45:50 +02:00
Dimitris Zervas
cd483e2cd1 Add the ability to build the app as a dir 2024-12-19 20:45:45 +02:00
Dimitris Zervas
8b4b4b8417 Take appimages into account during packing 2024-12-19 20:35:17 +02:00
Dimitris Zervas
42f6aedbc0 Build appimage instead of deb for linux 2024-12-19 20:17:33 +02:00
Richard Osborne
07a284cf2d Update README.md 2024-11-12 15:03:10 +01:00
Richard Osborne
ac7aa2d069 Updated README with new installers and backend info 2024-09-25 22:21:47 +02:00
Richard Osborne
3d30bb9280 Updated README with new installers and backend info 2024-09-25 22:19:00 +02:00
Richard Osborne
9492993ffa Changed version number 2024-09-24 22:36:26 +02:00
Richard Osborne
5cf9e875c1 Merge pull request #4 from The-Low-Code-Foundation/gpt-4o-project
Merging gpt-4o-project plus recent commits from Fluxscape
2024-09-24 21:31:23 +01:00
3 changed files with 81 additions and 6 deletions

36
CONTRIBUTING.md Normal file
View File

@@ -0,0 +1,36 @@
# Contributing to OpenNoodl
Thank you for your interest in contributing! Heres how you can help:
## How to Contribute
1. **Fork the repository** and create your feature branch:
```bash
git checkout -b feature/my-feature
```
2. **Make your changes** and ensure your code follows the existing style and conventions.
3. **Test your changes** locally.
4. **Commit your changes** with a clear message:
```bash
git commit -am 'Add new feature'
```
5. **Push to your branch**:
```bash
git push origin feature/my-feature
```
6. **Open a pull request** on GitHub. Describe your changes and the motivation behind them.
## Guidelines
- The branch name should be descriptive of the feature or fix. Either `feature/<my-feature>` or `fix/<my-fix>` prefixes are recommended. Also including an issue number can be helpful.
- Follow the coding style used in the project.
- Write clear, concise commit messages.
- Add tests for new features or bug fixes when possible.
- Document any new functionality.
## Need Help?
- Join our [community](https://the-low-code-foundation.fibery.io/invite/5NtlTThnCPh2vaAk)
- Open an issue for questions or suggestions.
Thank you for helping improve OpenNoodl!

View File

@@ -1,6 +1,6 @@
# OpenNoodl
OpenNoodl is a fork of the original Noodl open source code under GPL-3.0 license. OpenNoodl / Noodl is a front end React app builder with a visual programming interface.
OpenNoodl is a fork of the original Noodl open source code under GPL-3.0 license. OpenNoodl / Noodl is a front end React app builder with a visual programming interface.
OpenNoodl will aim to stay entirely in sync with the original repository, including future updates to this repository. A roadmap for updates will be published soon.
@@ -8,14 +8,53 @@ OpenNoodl will aim to stay entirely in sync with the original repository, includ
## One-click install
* [Code Crusher 1.0.1 for MacOS Intel](https://drive.google.com/file/d/11XPs0GjmNdQ4NxQLrtW5hlDqo21Fj_bs/view?usp=sharing)
* [Code Crusher 1.0.1 for MacOS Silicon](https://drive.google.com/file/d/1sGhGTTMTSS-1LBnFPfyg_eWxDPLaUexy/view?usp=sharing)
* [Code Crusher 1.0.1 for Windows](https://drive.google.com/file/d/10N8lZ-NlAO_Cr6Wi1o0CJHVepuVTpEtj/view?usp=drive_link)
* [OpenNoodl 1.1.0 for MacOS Intel](https://github.com/The-Low-Code-Foundation/OpenNoodl/releases/download/release/OpenNoodl.1.1.0.Apple.Intel.dmg)
* [OpenNoodl 1.1.0 for MacOS Silicon](https://github.com/The-Low-Code-Foundation/OpenNoodl/releases/download/release/OpenNoodl.1.1.0.Apple.Silicon.dmg)
* [OpenNoodl 1.1.0 for Windows](https://github.com/The-Low-Code-Foundation/OpenNoodl/releases/download/release/OpenNoodl.1.1.0.Windows.exe)
## Arch Linux
On Arch Linux, OpenNoodl can be installed [from the AUR](https://aur.archlinux.org/packages/opennoodl):
```
yay -S opennoodl
```
# Getting started
## Beginner resources
* [Tutorials and basic info](https://learn-noodl.com)
* [Resources and community components](https://the-low-code-foundation.fibery.io/invite/5NtlTThnCPh2vaAk)
## Integrated back-end
### Cloud hosted
OpenNoodl has native CRUD nodes that work with Parse Server backends. [OpenNoodl Hosting](https://opennoodl-hosting.com) provides free and paid Parse Server backends to help you get started.
### Self hosted
If you prefer self-hosting or a local backend, while still taking advantage of the native OpenNoodl CRUD nodes, check out the repositories of the original [Noodl Cloud Services backend](https://github.com/The-Low-Code-Foundation/opennoodl-cloudservice) (Parse and cloud functions), as well as the new [OpenNoodl Better Backend](https://github.com/The-Low-Code-Foundation/opennoodl-better-backend) (Parse and n8n).
## Building from source
See the original Noodl documentation below
# Contribution
We welcome contributions to OpenNoodl! To contribute:
1. **Fork the repository** and create your feature branch (`git checkout -b feature/my-feature`).
2. **Make your changes** and follow the existing code style.
3. **Test your changes** locally.
4. **Commit your changes** (`git commit -am 'Add new feature'`).
5. **Push to your branch** (`git push origin feature/my-feature`).
6. **Open a pull request** describing your changes.
See [CONTRIBUTING.md](CONTRIBUTING.md) for details and our code of conduct.
If you have questions, join our [community](https://the-low-code-foundation.fibery.io/invite/5NtlTThnCPh2vaAk) or open an issue.
# Noodl
[Noodl](https://noodl.net) is a low-code platform where designers and developers build custom applications and experiences. Designed as a visual programming environment, it aims to expedite your development process. It promotes the swift and efficient creation of applications, requiring minimal coding knowledge.
@@ -64,5 +103,5 @@ Packaged licensed under MIT:
- `noodl-runtime`
- `noodl-viewer-cloud`
- `noodl-viewer-react`
You can find a MIT LICENSE file in each of these packages. The rest of the repository is licensed under GPLv3.

View File

@@ -4,7 +4,7 @@
"description": "Low-code for when experience matter",
"author": "The Low Code Foundation <contact@thelowcodefoundation.com>",
"homepage": "https://learn-noodl.com",
"version": "1.0.0",
"version": "1.1.0",
"workspaces": [
"packages/*"
],