Skip to content

Commit

Permalink
added game files
Browse files Browse the repository at this point in the history
  • Loading branch information
lopeselio committed Jun 12, 2022
0 parents commit 827dfb7
Show file tree
Hide file tree
Showing 783 changed files with 211,197 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
REACT_APP_CANDY_MACHINE_CONFIG=BFL1G8rruiENgWjip5Qfd2G8FU8ydR5evCEnte1qMCmZ
REACT_APP_CANDY_MACHINE_ID=9wA7BUsCNoediqTausYBtuMzzBuiVnPWZi4G1ELZnqR2
REACT_APP_TREASURY_ADDRESS=7gQzoagJncRKo3AXo39FtDoAupsVLnr1izCNiQ7sPszU
REACT_APP_CANDY_START_DATE=1633219200

REACT_APP_SOLANA_NETWORK=devnet
REACT_APP_SOLANA_RPC_HOST=https://explorer-api.devnet.solana.com
7 changes: 7 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
REACT_APP_CANDY_MACHINE_CONFIG={{candy machine config}}
REACT_APP_CANDY_MACHINE_ID={{candy machine id}}
REACT_APP_TREASURY_ADDRESS={{candy machine address}}
REACT_APP_CANDY_START_DATE={{candy machine start date}}

REACT_APP_SOLANA_NETWORK=devnet
REACT_APP_SOLANA_RPC_HOST=https://explorer-api.devnet.solana.com
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

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

npm-debug.log*
yarn-debug.log*
yarn-error.log*
5 changes: 5 additions & 0 deletions CandyMachine-Storefront/store/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
.git
.editorconfig
.gitignore
.next
12 changes: 12 additions & 0 deletions CandyMachine-Storefront/store/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.rs]
indent_size = 4
38 changes: 38 additions & 0 deletions CandyMachine-Storefront/store/.github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
13 changes: 13 additions & 0 deletions CandyMachine-Storefront/store/.github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
updates:
- package-ecosystem: cargo
directory: "/"
schedule:
interval: daily
time: "04:00"
timezone: America/Los_Angeles
labels:
- "automerge"
open-pull-requests-limit: 3
ignore:
- dependency-name: "cbindgen"
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Pull Request (CLI)

on:
pull_request:
paths:
- js/packages/cli/*
push:
branches:
- master
paths:
- js/packages/cli/*

jobs:
unit_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- uses: actions/setup-node@v2
with:
node-version: "14"

- uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

- name: Install modules
run: yarn install
working-directory: js/packages/cli

- name: Run Tests
run: yarn test
working-directory: js/packages/cli
25 changes: 25 additions & 0 deletions CandyMachine-Storefront/store/.github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Lint

on:
pull_request:
push:
branches: [master]

jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

- name: Install modules
run: yarn install
working-directory: js

- name: Run ESLint
run: yarn lint:eslint
working-directory: js
134 changes: 134 additions & 0 deletions CandyMachine-Storefront/store/.github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
name: Pull Request

defaults:
run:
working-directory: ./rust

on:
pull_request:
push:
branches: [master]

jobs:
all_github_action_checks:
runs-on: ubuntu-latest
needs:
- rustfmt
- clippy
- cargo-build-test
steps:
- run: echo "Done"
working-directory: ./

rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set env vars
run: |
source ci/rust-version.sh
echo "RUST_STABLE=$rust_stable" >> $GITHUB_ENV
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_STABLE }}
override: true
profile: minimal
components: rustfmt

- name: Run fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --manifest-path ./rust/Cargo.toml --all -- --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set env vars
run: |
source ci/rust-version.sh
echo "RUST_NIGHTLY=$rust_nightly" >> $GITHUB_ENV
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_NIGHTLY }}
override: true
profile: minimal
components: clippy

- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-clippy-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
cargo-clippy-
- name: Install dependencies
run: ./ci/install-build-deps.sh

- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --manifest-path ./rust/Cargo.toml -Zunstable-options --workspace --all-targets -- --deny=warnings

cargo-build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set env vars
run: |
source ci/rust-version.sh
echo "RUST_STABLE=$rust_stable" >> $GITHUB_ENV
source ci/solana-version.sh
echo "SOLANA_VERSION=$solana_version" >> $GITHUB_ENV
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_STABLE }}
override: true
profile: minimal

- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
# target # Removed due to build dependency caching conflicts
key: cargo-build-${{ hashFiles('**/Cargo.lock') }}-${{ env.RUST_STABLE}}

- uses: actions/cache@v2
with:
path: |
~/.cargo/bin/rustfilt
key: cargo-bpf-bins-${{ runner.os }}

- uses: actions/cache@v2
with:
path: |
~/.cache
key: solana-${{ env.SOLANA_VERSION }}

- name: Install dependencies
run: |
./ci/install-build-deps.sh
./ci/install-program-deps.sh
echo "$HOME/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
- name: Build and test
run: ./ci/cargo-build-test.sh

- name: Upload programs
uses: actions/upload-artifact@v2
with:
name: programs
path: "rust/target/deploy/*.so"
if-no-files-found: error
35 changes: 35 additions & 0 deletions CandyMachine-Storefront/store/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
node_modules/
.anchor
**/*.rs.bk
build/
rust/test/nft-candy-machine.js
dist/
lib/
deploy/
docs/lockup-ui/
.DS_Store
*~
.idea
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.css
*.css.map
!js/packages/metaplex/src/fonts/fonts.css
!js/packages/metaplex/src/utils/globals.css
js/.eslintcache
target
.env
.vscode
bin
config.json
node_modules
./package-lock.json
hfuzz_target
hfuzz_workspace
**/*.so
**/.DS_Store
.cache
js/packages/web/.env
traits
traits-configuration.json
Loading

0 comments on commit 827dfb7

Please sign in to comment.