File tree 4 files changed +34
-12
lines changed
4 files changed +34
-12
lines changed Original file line number Diff line number Diff line change 1
- # 0xBTC Matic Wallet
1
+ # 0xBitcoin Tailwind-Vue Website
2
2
3
- A web3 wallet for 0xBTC that works with the Matic and Ethereum networks.
3
+ Deployed at https://0xbitcoin.org
4
4
5
- This dapp is deployed at Https://wallet.0xbtc.io
6
5
7
6
8
7
9
- ## Project setup
10
8
9
+ ### Development commands
11
10
```
12
11
npm install
13
- npm run serve
12
+ npm run dev
14
13
```
15
14
16
-
17
- ## Development Checklist
18
-
19
- * Refine the method for reclaiming 0xbtc back to the Eth network (requires checkpointing)
20
- * Add more tokens
21
- * Add a simple transfer form button
15
+ ### Packaging commands
16
+ ```
17
+ npm run build
18
+ npm run server
19
+ ```
Original file line number Diff line number Diff line change
1
+ const express = require ( 'express' ) ;
2
+ const app = express ( ) ;
3
+ const port = 3000 ;
4
+
5
+ app . use ( express . static ( 'dist' ) )
6
+ app . get ( '/' , ( req , res ) => {
7
+ res . sendFile ( './dist/index.html' , { root : __dirname } ) ;
8
+ } ) ;
9
+
10
+ app . listen ( port , ( ) => console . log ( `listening on port ${ port } !` ) ) ;
Original file line number Diff line number Diff line change 4
4
"version" : " 0.1.0" ,
5
5
"private" : true ,
6
6
"scripts" : {
7
- "serve " : " vue-cli-service serve" ,
7
+ "dev " : " vue-cli-service serve" ,
8
8
"build" : " vue-cli-service build" ,
9
+ "server" : " node express.js" ,
9
10
"lint" : " vue-cli-service lint"
10
11
},
11
12
"dependencies" : {
26
27
"babel-eslint" : " ^10.0.1" ,
27
28
"eslint" : " ^5.8.0" ,
28
29
"eslint-plugin-vue" : " ^5.0.0" ,
30
+ "express" : " ^4.17.1" ,
29
31
"vue-template-compiler" : " ^2.5.21"
30
32
}
31
33
}
Original file line number Diff line number Diff line change
1
+ # 0xBitcoin Compiled Website
2
+
3
+ Deployed at https://0xbitcoin.org
4
+
5
+
6
+ ### This is the compiled code repo.
7
+
8
+
9
+
10
+ ADVISORY: DO NOT issue pull requests to this repo, they will be ignored!
11
+
12
+ Issue pull requests to https://github.com/0xbitcoin/0xbitcoin-web
You can’t perform that action at this time.
0 commit comments