Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvind-4 authored Aug 19, 2021
1 parent b97835b commit 5e04919
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Landing-Page-in-Django

Make a Landing Page for your Business with Django and Postgres.

Take a Look What is Built. [landingbusinesspage.herokuapp.com](https://landingbusinesspage.herokuapp.com/)

# How to Run this Locally


### Step 1: Create a Virtual Environment
```
pip install virtualenv
cd /path/to/folder
mkdir landing_page
cd landing_page
virtualenv .
source scripts/activate
```

### Step 2: Clone Repository and Install Dependencies
```
cd /path/to/folder
mkdir src
cd src
git clone https://github.com/Arvind-4/Landing-Page-in-Django.git .
pip install -r requirements.txt
```

### Step 3: Run the Server
```
cd /path/to/folder/landing_page
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
```

Open [127.0.0.1:8000](http://127.0.0.1:8000/) in Browser.<br>
Take a Look at the Website on [landingbusinesspage.herokuapp.com](https://landingbusinesspage.herokuapp.com/)

0 comments on commit 5e04919

Please sign in to comment.