Skip to content

Commit dcfa53c

Browse files
committed
add readme
1 parent 3337043 commit dcfa53c

3 files changed

Lines changed: 64 additions & 2 deletions

File tree

Readme.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Vimana
2+
3+
> Vimana is a Sanskrit word meaning flying object, and in ancient Vedic texts and Indian epics, Vimanas are described as vehicles used by the "gods" to travel the sky, fight wars again each other, and spread wealth and knowledge among primitive ancient people.
4+
5+
Viamana aims to solve the problem of centralised powers in AI.
6+
7+
Using Tendermint POS BFT system.
8+
9+
Python 3.6.5+
10+
11+
## Install
12+
13+
1. Install [tendermint](https://github.com/tendermint/tendermint)
14+
15+
2. Clone this repo and install all the requirements
16+
17+
optionally create a virtualenv for this
18+
```
19+
20+
virtualenv venv
21+
source venv/bin/activate
22+
```
23+
24+
go inside the folder
25+
`cd vimana`
26+
27+
install all the requirements
28+
29+
`pip -r req.txt`
30+
31+
3. To run the application
32+
33+
34+
`cd tendermint`
35+
36+
RUN the abci (application blockchain interface)
37+
38+
`python3 app.py`
39+
40+
This will start the abci on port 266658
41+
42+
4. Run Tendermint
43+
44+
first initalise tendermint
45+
46+
`tendermint init`
47+
48+
`tendermint node`
49+
50+
Use the flags to remove empty blocks optionally.
51+
52+
You should be able to send requests to rendermint now. Send curl requests to 25556
53+
54+
5. Webserver made to send curl requests easily
55+
56+
Go to main folder.
57+
58+
`cd ..`
59+
60+
`python manage.py runserver`
61+
62+
Now visit port 8000 to send requests to the tendermint node easily.

templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<meta name="twitter:image:height" content="141">
1515

16-
<title>{% block head_title %} White Element{% endblock head_title%}</title>
16+
<title>{% block head_title %} Vimana {% endblock head_title%}</title>
1717
<meta name="description" content="">
1818
<meta name="keywords" content="">
1919

templates/main.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<div class="navbar-brand">
88
<a class="navbar-item" href="/">
99
<strong>
10-
<i class="em em-star"></i> White Element <span class="tag is-rounded is-primary is-small">Alpha</span></strong>
10+
<i class="em em-small_airplane"></i> Vimana <span class="tag is-rounded is-primary is-small">Alpha</span></strong>
1111
</a>
1212
<span class="navbar-burger burger" data-target="navbarMenuHeroB">
1313
<span> </span>

0 commit comments

Comments
 (0)