Skip to content

Commit 3825db4

Browse files
committed
first commit
0 parents  commit 3825db4

39 files changed

+14298
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
dist
3+
*.env
4+

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
# Vim Safe App
3+
4+
## Description
5+
Vim Safe App is a secure and efficient application designed to enhance your Vim experience. It provides various features to ensure your work is safe and your productivity is maximized.
6+
7+
## Installation
8+
To install Vim Safe App, follow these steps:
9+
1. Clone the repository:
10+
```sh
11+
git clone https://github.com/yourusername/vim-safe-app.git
12+
```
13+
2. Navigate to the project directory:
14+
```sh
15+
cd vim-safe-app
16+
```
17+
3. Install the dependencies:
18+
```sh
19+
npm install:all
20+
```
21+
22+
## Usage
23+
To start using Vim Safe App, run the following command:
24+
```sh
25+
npm start
26+
```
27+
28+
## Contributing
29+
If you would like to contribute to Vim Safe App, please follow these steps:
30+
1. Fork the repository.
31+
2. Create a new branch (`git checkout -b feature-branch`).
32+
3. Make your changes.
33+
4. Commit your changes (`git commit -m 'Add some feature'`).
34+
5. Push to the branch (`git push origin feature-branch`).
35+
6. Open a pull request.
36+
37+
## License
38+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

client/.gitignore

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
25+
.env

client/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Vim Safe App
2+
A Vim-like web app for sending Safe transactions using WalletConnect.
3+
4+
## Setup
5+
1. **Install dependencies**: `npm run install:all`
6+
2. **Fill environment variables**:
7+
- `server/.env`: Add `WALLETCONNECT_PROJECT_ID`, `INFURA_KEY`, `SAFE_ADDRESS`
8+
- `client/.env`: Add `VITE_SAFE_ADDRESS`, `VITE_API_URL`
9+
3. **Run**: `npm run start`
10+
11+
## Commands
12+
- `:walletconnect` - Connect wallet via WalletConnect
13+
- `:send` - Send a Safe transaction
14+
- `:q` - Clear the buffer

0 commit comments

Comments
 (0)