Skip to content

Commit

Permalink
Update Website (#206)
Browse files Browse the repository at this point in the history
* Update doc links

* Remove POSIX IPC install instructions

* Update Navigation
  • Loading branch information
toshan-luktuke authored Jan 30, 2023
1 parent 17a2dc3 commit a350204
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 16 deletions.
6 changes: 3 additions & 3 deletions docs/_data/navigation.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# main links
main:

- title: LogBook
url: /logbook/
- title: About
url: /about/

- title: Installation
url: /install/
Expand All @@ -12,7 +12,7 @@ main:

# left side bar
docs:
- title: LogBook
- title: Home
children:
- title: Check it out
url: /
Expand Down
16 changes: 3 additions & 13 deletions docs/_pages/usermanual.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,6 @@ python3-tk python3-opencv \
python3-pip
```


##### POSIX_IPC and XClip:

```
sudo pip3 install posix_ipc
sudo apt-get install xclip
```


##### NodeJS (14.4.0) and npm (6.14.5):

```
Expand All @@ -54,7 +45,6 @@ node --version
npm --version
```


## Setup

You can directly use the hosted version of VisualCircuit at https://visualcircuit.org without any setup!
Expand All @@ -77,11 +67,11 @@ Run VisualCircuit frontend:
Run VisualCircuit backend:`

1. Open the VisualCircuit folder and change directory to `backend` in a terminal
2. Create a Python3 virtual environment using venv. For eg. `python -m venv .venv`
2. Create a Python3 virtual environment using venv. For eg. `python3 -m venv .venv`
3. After activating the virtual environment, install the dependencies by running `pip install -r requirements.txt`
4. Add .env file to the backend folder. And add the variables as defined in .env.template
5. Create the static folder which will serve files during execution using `python manage.py collectstatic`
6. Start the server by running `python manage.py runserver 8000`
5. Create the static folder which will serve files during execution using `python3 manage.py collectstatic`
6. Start the server by running `python3 manage.py runserver 8000`


#### Well Done! you have Successfully Installed the VisualCircuit
Expand Down

0 comments on commit a350204

Please sign in to comment.