Skip to content

Commit fa7bef3

Browse files
committed
Inital Commit
0 parents  commit fa7bef3

File tree

67 files changed

+4678
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+4678
-0
lines changed

.cargo/config.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "Codora CI"
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
jobs:
11+
docs:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v3
16+
17+
- name: Build and deploy docs
18+
run: echo "Building and deploying docs"

.gitignore

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# Ignore Node.js dependencies and lockfiles
2+
node_modules/
3+
package-lock.json
4+
pnpm-lock.yaml
5+
yarn.lock
6+
bun.lockb
7+
coverage
8+
9+
# Ignore Rust target directory (compiled binaries)
10+
target/
11+
**/target/
12+
13+
# Ignore Rust-specific files
14+
Cargo.lock
15+
*.rs.bk
16+
*.rmeta
17+
18+
# Ignore environment variables and secrets
19+
.env
20+
.env.local
21+
.env.development.local
22+
.env.test.local
23+
.env.production.local
24+
25+
# Ignore build and generated files
26+
dist/
27+
out/
28+
.build/
29+
.cache/
30+
.docusaurus/
31+
.svelte-kit/
32+
.next/
33+
.vite/
34+
wasm-pack/
35+
pkg/
36+
37+
# Ignore logs and debug files
38+
npm-debug.log*
39+
yarn-debug.log*
40+
yarn-error.log*
41+
pnpm-debug.log*
42+
cargo-debug.log*
43+
cargo-test.log*
44+
turbo-debug.log*
45+
lerna-debug.log*
46+
*.log
47+
48+
# Ignore temporary files
49+
.DS_Store
50+
Thumbs.db
51+
*.swp
52+
*.swo
53+
*.sublime-workspace
54+
55+
# Ignore IDE and editor files
56+
.idea/
57+
.vscode/
58+
*.iml
59+
*.suo
60+
*.ntvs*
61+
*.njsproj
62+
*.sln
63+
*.sw?
64+
65+
# Ignore GitHub Actions and deployment artifacts
66+
.github/workflows/node_modules/
67+
.github/workflows/dist/
68+
69+
# Ignore WebAssembly (WASM) build artifacts
70+
*.wasm
71+
*.wat
72+
*.wast
73+
74+
# docusaurus
75+
docs/.docusaurus
76+
.docusaurus
77+
**/.docusaurus
78+
79+
# templates
80+
templates/*
81+
**/templates
82+
83+
dev.*rs
84+
dev/**
85+
**/dev/**

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "@client/@client/codora"]
2+
path = @client/@client/codora
3+
url = https://github.com/codetheproject/codora-js.git

CONTRIBUTION.md

Whitespace-only changes.

0 commit comments

Comments
 (0)