Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.

Update Readme #184

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,38 @@ These tables can also be dropped using:
python manage.py drop
```

Installation using python
------------------------------------
Clone the repository from GitHub
```
git clone https://github.com/dfm/osrc.git
```


Open PyCharm and create a new project from the cloned repository.
Open a terminal in PyCharm and navigate to the project directory.


Create a new virtual environment
```
python -m venv env
```
Activate the virtual environment
```
source env/bin/activate
```
Install the required packages
```
pip install -r requirements.txt
```

Create the database tables
```createdb osrc```

```python manage.py create ```

Run the server
```python manage.py runserver```

License & Credits
-----------------
Expand Down