Giter Site home page Giter Site logo

docs-docusaurus's People

Contributors

3benbox avatar christianlavoie avatar criadoperez avatar gvelez17 avatar harrigan avatar julissadantes avatar justinapetr avatar kammerdiener avatar kgmajor avatar mzkrasner avatar ngud-0119 avatar oed avatar paullecam avatar velvet-shark avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

docs-docusaurus's Issues

__ [Bounty]

Prize Title

Prize Bounty

[comment]: # List the token type (ETH/ERC-20) and amount.

Challenge Description

[comment]: # Be as descriptive as possible about what you want to see built. Challenges should be useful for your organization, but open-ended enough to allow for creativity from hackers.

Submission Requirements

[comment]: # What constitutes a valid submission to win the prize? Would you like a demo included in the submission (Strongly Recommended)?. What will help you determine whether a submission passed a threshold of acceptable quality? Please include any relevant code contribution guidelines/standards, etc.

Judging Criteria

[comment]: # How will the sponsor ultimately decide the winner/winners from all valid submissions? First valid submission received? Best submission meeting some criteria by the deadline?

Winner Announcement Date

[comment]: # Please plan to have judges from your organization (or others you choose) review the submissions as early as possible after the hackathon ends (or immediately upon submission, if you set your submission deadline up to be first-to-submit) to ensure prompt winner announcement and payout.

BUG: Scaffold a new Ceramic app shows Error

Describe the bug
Scaffoling a ceramic applicaiton is not working with any of the commands

To Reproduce
Steps to reproduce the behavior:

  1. In a terminal window execute:
npx create-ceramic-app
# or
pnpm dlx create-ceramic-app
# or
yarn dlx create-ceramic-app
  1. Check error message showing: ``› Error: command Symbol(SINGLE_COMMAND_CLI) not found```

Expected behavior
A new project with its dependencies should be created.

Machine, OS, browser information
Tried on:

  • Linux, PopOs 22.04, Firefox. Node 20.11.1, npm 10.2.4
  • Linux container, ChromeOS - Debian 20, Chrome, Node 2, npm

Additional context
Also, pnpx has been removed, docs should be replaced with pnpm dlx.

BUG: '✖ Fetch failed' while creating composites on local ceramic node.

Describe the bug
Ceramic local node starts at http://0.0.0.0:7007, thus all the documentation with http://localhost:7007 doesn't function correctly.

To Reproduce
Steps to reproduce the behavior:

  1. Follow steps in https://developers.ceramic.network/docs/composedb/set-up-your-environment#2c-installation-using-javascript-package-managers
  2. Follow all steps into until you reach the command:
composedb composite:from-model kjzl6hvfrbw6c5ajfmes842lu09vjxu5956e3xq0xk12gp2jcf9s90cagt2god9 --ceramic-url=http://localhost:7007 --output=my-first-composite.json
  1. See error: ✖ fetch failed

Expected behavior
The Ceramic Node should start at localhost:7007 or else all the documentation should switch to http://0.0.0.0:7007 as the --ceramic-url or the -c flag

Machine, OS, browser information (please complete the following information):
Linux, PopOs 22.04, Firefox. Node 20.11.1, npm 10.2.4

BUG: Installation with wheel fails when changing default config

Describe the bug
Trying to install with wheel shows error when using Change option when prompted for the installation configuration.

To Reproduce
Steps to reproduce the behavior:

  1. Execute ./wheel after curl download
  2. Accept the default options for prompts.
  3. Check error after answering > Would you like ceramic started as a daemon? Yes
    Error shows:
Waiting for ceramic to startCeramic exited with code 1
    node:internal/modules/cjs/loader:1147
    throw err;
    ^
    
    Error: Cannot find module '/home/daniel/Documentos/Hackathons/DescentralizedIntelligenceSeason2/ceramic-test-app/node_modules/.bin/ceramic'
    at Module._resolveFilename (node:internal/modules/cjs/loader:1144:15)
    at Module._load (node:internal/modules/cjs/loader:985:27)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:135:12)
    at node:internal/main/run_main_module:28:49 {
    code: 'MODULE_NOT_FOUND',
    requireStack: []
    }
    
    Node.js v20.11.1
x Waiting for ceramic to startError: Ceramic failed to start

Expected behavior
A Ceramic Node should start

Machine, OS, browser information
Linux, PopOs 22.04, Firefox. Node 20.11.1, npm 10.2.4

BUG: Sample Graphql query fails in 'Interact with data' section

Describe the bug
Compiling composites shown at the "Create your composite" pull different models than those in the docs (expect: Post and SimpleProfile, getting: MyModel and SimpleProfile). Then when executing the first query in the 'Interact with data' section the query for postIndex fails.
My assumption: model stream IDs on clay testnet are outdated in the docs, or may be fetched from mainnet.

To Reproduce
Steps to reproduce the behavior (following the Getting Started guide):

  1. Create the composite:
composedb composite:from-model kjzl6hvfrbw6c5ajfmes842lu09vjxu5956e3xq0xk12gp2jcf9s90cagt2god9 kjzl6hvfrbw6cb905umdi33gp1em1sp7b235z2h2orphj2p14by6llq9gwynsaf --ceramic-url=http://localhost:7007 --output=my-first-composite.json
  1. Deploy composite
composedb composite:deploy my-first-composite.json --ceramic-url=http://localhost:7007 --did-private-key=your-private-key
  1. Compile composite
composedb composite:compile my-first-composite.json runtime-composite.json
  1. Start Graphiql with compiled composite file
composedb graphql:server --ceramic-url=http://localhost:7007 --graphiql runtime-composite.json --did-private-key=your-private-key --port=5005
  1. Open http://localhost:5005/graphql and run query:
query{
  postIndex(first: 2) {
    edges {
      node {
        text
      }
    }
  }
}
  1. See error:
{
  "errors": [
    {
      "message": "Cannot query field \"postIndex\" on type \"Query\".",
      "locations": [
        {
          "line": 2,
          "column": 3
        }
      ]
    }
  ]
}

Expected behavior
Fetched models should match to Post and SimpleProfile, so that the query can be run.

Machine, OS, browser information (please complete the following information):
Linux, PopOs 22.04, Firefox. Node 20.11.1, npm 10.2.4

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.