Skip to content

Commit

Permalink
🏳️‍🌈🍭 ↣ Merge pull request #19 from Signal-K/sta-25-working
Browse files Browse the repository at this point in the history
🏳️‍🌈🍭 ↣ Web3 components with off-chain database integration
  • Loading branch information
Gizmotronn authored Nov 24, 2022
2 parents 8faa46d + d10b1f5 commit 9722c34
Show file tree
Hide file tree
Showing 250 changed files with 9,071 additions and 49,993 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion .env

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Node.js CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test
34 changes: 34 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: test

on: workflow_dispatch

env:
FOUNDRY_PROFILE: ci

jobs:
check:
strategy:
fail-fast: true

name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build

- name: Run Forge tests
run: |
forge test -vvv
id: test
47 changes: 46 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,47 @@
.gitsigners
.env
.env
.venv
__pycache__
.flaskenv.example

node_modules
/node_modules
./node_modules

.vscode
/.vscode
./.vscode
.vercel

.next
/.next

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
artifacts
.artifacts
./artifacts
/artifacts

npm-debug.log*
yarn-debug.log*
yarn-error.log*

build
./build
.build
/build

venv
.venv
/.venv
/venv

cache
/cache
./cache
.cache.gitsigners
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[submodule "DataVis ARVR"]
path = DataVis ARVR
url = https://github.com/Call-For-Code/UnityStarterKit
[submodule "thirdweb-contracts/lib/forge-std"]
path = thirdweb-contracts/lib/forge-std
url = https://github.com/foundry-rs/forge-std.git
[submodule "container/lib/forge-std"]
path = container/lib/forge-std
url = https://github.com/foundry-rs/forge-std.git
3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

9,565 changes: 0 additions & 9,565 deletions Ansible/Data/cumulative.csv

This file was deleted.

247 changes: 0 additions & 247 deletions Ansible/Generator/Components/Binning.ipynb

This file was deleted.

351 changes: 0 additions & 351 deletions Ansible/Generator/Components/MultiSector.ipynb

This file was deleted.

332 changes: 0 additions & 332 deletions Ansible/Generator/Components/Period.ipynb

This file was deleted.

239 changes: 0 additions & 239 deletions Ansible/Generator/Components/PhaseFolding.ipynb

This file was deleted.

291 changes: 0 additions & 291 deletions Ansible/Generator/Components/Radius.ipynb

This file was deleted.

25 changes: 0 additions & 25 deletions Ansible/Generator/Detection/TransitTimeVariation.ipynb

This file was deleted.

880 changes: 0 additions & 880 deletions Ansible/Generator/Identifier.ipynb

This file was deleted.

15 changes: 0 additions & 15 deletions Ansible/Generator/Pipfile

This file was deleted.

690 changes: 0 additions & 690 deletions Ansible/Generator/PlanetStats.ipynb

This file was deleted.

30 changes: 0 additions & 30 deletions Ansible/Generator/Star Generation/StellarVariability.ipynb

This file was deleted.

324 changes: 0 additions & 324 deletions Ansible/Generator/Verification/BackgroundFlux.ipynb

This file was deleted.

244 changes: 0 additions & 244 deletions Ansible/Generator/Verification/TargetPixelFiles.ipynb

This file was deleted.

23 changes: 0 additions & 23 deletions Ansible/Pipfile

This file was deleted.

Loading

0 comments on commit 9722c34

Please sign in to comment.