Skip to content

Commit 6aae41f

Browse files
committed
Initial commit
0 parents  commit 6aae41f

File tree

4 files changed

+87
-0
lines changed

4 files changed

+87
-0
lines changed

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
*.pyc
16+
.venv
17+
18+
# Editor directories and files
19+
.vscode/*
20+
!.vscode/extensions.json
21+
.idea
22+
.DS_Store
23+
*.suo
24+
*.ntvs*
25+
*.njsproj
26+
*.sln
27+
*.sw?

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2024 Brian Branch
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to use
5+
the Software for personal purposes only, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all
8+
copies or substantial portions of the Software.
9+
10+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
13+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
14+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
15+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
16+
SOFTWARE.
17+
18+
Personal Use Clause:
19+
This software may only be used for personal purposes. Commercial use, including
20+
but not limited to use by organizations, is strictly prohibited. For any other
21+
use, please contact <baebranch@outlook.com>.

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Flow Control
2+
3+
Using React Flow to create a flow control application, primarily for designing, architecting, and visualizing the systems and processes of a business.
4+
5+
## Getting up and running
6+
7+
Install the dependencies:
8+
9+
```bash
10+
npm install # or `pnpm install` or `yarn install`
11+
```
12+
13+
Run the development server:
14+
15+
```bash
16+
npm run dev
17+
```
18+
19+
## Customizing the app:
20+
21+
- Create a new custom node inside `src/custom/`
22+
- Change how things look by [overriding some of the built-in classes](https://reactflow.dev/learn/customization/theming#overriding-built-in-classes).
23+
- Add a layouting library to [position your nodes automatically](https://reactflow.dev/learn/layouting/layouting)
24+
25+
## Resources
26+
27+
Links:
28+
29+
- [React Flow - Docs](https://reactflow.dev)
30+
- [React Flow - Discord](https://discord.com/invite/Bqt6xrs)
31+
32+
Learn:
33+
34+
- [React Flow – Custom Nodes](https://reactflow.dev/learn/customization/custom-nodes)
35+
- [React Flow – Layouting](https://reactflow.dev/learn/layouting/layouting)

requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
aiodns
2+
ariadne
3+
aiohttp
4+
sqlalchemy

0 commit comments

Comments
 (0)