Skip to content

Commit

Permalink
Merge branch 'main' into fury
Browse files Browse the repository at this point in the history
  • Loading branch information
yashbonde committed Oct 13, 2023
2 parents 7a90ee6 + 044e1c6 commit a272e8f
Show file tree
Hide file tree
Showing 3 changed files with 177 additions and 161 deletions.
15 changes: 14 additions & 1 deletion api_docs/examples/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,19 @@ fury engine. To build the entire system you can run the following commands:
python3 -m venv venv
source venv/bin/activate
sudo apt update
#Install npm
sudo apt install npm
#Install Node.js
sudo apt install -y nodejs #Install version >= 14.0
#Install Yarn
sudo npm install -g yarn #install yarn globally
# build the client
sh stories/build_and_copy.sh
sh scripts/build_and_copy.sh
# setup the server env
pip install setuptools
Expand All @@ -63,3 +74,5 @@ fury engine. To build the entire system you can run the following commands:
# to start the server
cd chainfury_server
python3 server.py
#
10 changes: 7 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,13 @@
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.21",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.1",
"typescript": "^4.9.3",
"vite": "^4.2.0"
"vite": "^4.2.3"
},
"resolutions": {
"postcss": "^8.4.31",
"semver": "^6.3.1"
}
}
}
Loading

0 comments on commit a272e8f

Please sign in to comment.