Skip to content

Commit

Permalink
feat(create-dapp): npm create @agoric/dapp ... uses agoric init
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Nov 13, 2023
1 parent 26244e8 commit 2c9b4e3
Show file tree
Hide file tree
Showing 8 changed files with 196 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/agoric-cli/src/sdk-package-names.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export default [
"@agoric/cosmic-proto",
"@agoric/cosmic-swingset",
"@agoric/cosmos",
"@agoric/create-dapp",
"@agoric/deploy-script-support",
"@agoric/deployment",
"@agoric/ertp",
Expand Down
83 changes: 83 additions & 0 deletions packages/create-dapp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
.vagrant
/dapps

# emacs and vim
*~
[._]*.sw[a-p]

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next

.idea/

# dist files
/dist

# generated integration-test files
integration-test/.cache
integration-test/bundles
integration-test/transform-tests/output

# generated Sphinx/ReadTheDocs files
/docs/build/
/demo
t[0-9]*
14 changes: 14 additions & 0 deletions packages/create-dapp/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.vagrant

# Demo
demo
dapps

# scripts
scripts

# test
test

# Travis CI
.travis.yml
4 changes: 4 additions & 0 deletions packages/create-dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
23 changes: 23 additions & 0 deletions packages/create-dapp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Create Agoric Dapp

To make a new Agoric Dapp in the `foo` subdirectory, you can use:

```
$ yarn create @agoric/dapp foo
```

or:

```
$ npm create @agoric/dapp foo
```

or:

```
$ pnpm create @agoric/dapp foo
```

Each of the above commands are shorthand for installing the `agoric` package, then running `agoric init foo`.

Please see the [Getting Started website](https://agoric.com/documentation/getting-started/) for information.
51 changes: 51 additions & 0 deletions packages/create-dapp/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"name": "@agoric/create-dapp",
"version": "0.1.0",
"description": "Create an Agoric Javascript smart contract application",
"type": "module",
"bin": {
"create-dapp": "src/create-dapp.js"
},
"files": [
"src"
],
"scripts": {
"build": "exit 0",
"test": "ava",
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error lint:*",
"lint:types": "tsc -p jsconfig.json",
"lint:eslint": "eslint ."
},
"devDependencies": {
"ava": "^5.2.0",
"c8": "^7.13.0",
"dd-trace": "^3.3.0"
},
"dependencies": {
"agoric": "^0.21.2-u12.0"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/Agoric/agoric-sdk"
},
"author": "Agoric",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Agoric/agoric/agoric-sdk"
},
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
"ava": {
"files": [
"test/**/test-*.js"
],
"timeout": "2m",
"workerThreads": false
},
"publishConfig": {
"access": "public"
}
}
17 changes: 17 additions & 0 deletions packages/create-dapp/src/create-dapp.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#! /usr/bin/env node
/* global process */
import { spawnSync } from 'child_process';
import { createRequire } from 'module';

const require = createRequire(import.meta.url);

const agoricCli = require.resolve('.bin/agoric');

const proc = spawnSync(agoricCli, ['init', ...process.argv.slice(2)], {
stdio: 'inherit',
});

if (proc.error) {
throw proc.error;
}
process.exit(proc.status);
3 changes: 3 additions & 0 deletions packages/create-dapp/test/test-stub.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import test from 'ava';

test.todo('write some tests');

0 comments on commit 2c9b4e3

Please sign in to comment.