Skip to content

Commit

Permalink
create Readmi
Browse files Browse the repository at this point in the history
  • Loading branch information
rakesh-krishna authored Apr 28, 2021
1 parent 9233e45 commit a8ae4e9
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# visitor-management

On the terminal execute the below command to create the projects' working directory and move into that directory.
```bash
$ mkdir visitor-management
cd visitor-management

```
In the projects' working directory execute the below command to create a virtual environment for our project. Virtual environments make it easier to manage packages for various projects separately.

```bash

$ virtualenv venv

```

To activate the virtual environment, execute the below command.

```bash

$ source venv/Script/activate

```
Clone this repository in the projects' working directory by executing the command below.
```bash
$ git clone https://github.com/rakesh-krishna/visitor-management.git
$ cd visitor-management
```

To install all the required dependencies execute the below command.
```bash
$ pip install -r requirements.txt
```
If any problem with installing requirements try refering [here](https://stackoverflow.com/questions/41457612/how-to-use-requirements-txt-to-install-all-dependencies-in-a-python-project)


Use execute the below command.
```bash
$ python wsgi.py
```

0 comments on commit a8ae4e9

Please sign in to comment.