-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9233e45
commit a8ae4e9
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` | ||
|