Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated the Lucid vesting app. #127

Open
wants to merge 1 commit into
base: fourth-iteration
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions code/Week03/lucid/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/.env
11 changes: 11 additions & 0 deletions code/Week03/lucid/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## Setup

1. Create a `.env` file inside this directory.

2. Inside the file, add the following line with the actual string of your Blockfrost API project id:

```sh
BLOCKFROST_PROJECT_ID=<Your own Blockfrost project Id>
```

3. Run `npm run install && npm run start`
64 changes: 37 additions & 27 deletions code/Week03/lucid/package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,39 @@
{
"name": "atomic",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack serve --open"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"bootstrap": "^5.2.3",
"copy-webpack-plugin": "^11.0.0",
"lucid-cardano": "^0.9.1",
"popper.js": "^1.16.1",
"web3": "^1.8.2"
}
"name": "atomic",
"version": "1.0.0",
"description": "a demo Vesting app",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack serve --open"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@popperjs/core": "^2.11.8",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"postcss-loader": "^8.1.1",
"sass": "^1.80.4",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"bootstrap": "^5.3.3",
"copy-webpack-plugin": "^12.0.2",
"dotenv": "^16.4.5",
"dotenv-webpack": "^8.1.0",
"lucid-cardano": "^0.10.10",
"node-polyfill-webpack-plugin": "^4.0.0",
"process": "^0.11.10",
"web3": "^4.14.0"
},
"browser": {
"path": false
}
}
1 change: 0 additions & 1 deletion code/Week03/lucid/src/bootstrap-datetimepicker.min.css

This file was deleted.

Loading