From bc68562956cb058773f6f05cd2ef757cfa7a4efc Mon Sep 17 00:00:00 2001 From: Arvind Date: Fri, 29 Sep 2023 18:36:47 +0530 Subject: [PATCH] Updated: README.md file --- README.md | 52 ++++++++++++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index e1f4621..46c736f 100644 --- a/README.md +++ b/README.md @@ -3,57 +3,65 @@ Make a Landing Page for your Business with Django and Postgres. -## Stack +## 📦 Screenshots: + +Home Page + +## 📦 Tech Stack: - [Django](https://www.djangoproject.com) - Django makes it easier to build better web apps more quickly and with less code. - [Bootstrap](https://getbootstrap.com/) - Build fast, responsive sites with Bootstrap. -- [Postgres](https://firebase.google.com/) - The World's Most Advanced Open Source Relational Database. +- [Postgres](https://www.postgresql.org/) - The World's Most Advanced Open Source Relational Database. ---- Deployed on [Vercel](https://vercel.com/).
-Click Here for [Live Preview.](https://getidea.ml) - ---- - - +Click Here for [Live Preview.](https://landing-django.vercel.app/) +## Deploy Now: +[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/Arvind-4/Landing-Page-in-Django) -Add Your Environment variable to `.env`.
- Refer `.sample.env` file. +## Getting Started: ---- -# How to Run this Locally +- Clone Repo -### Step 1: Clone Repository: -``` +```bash cd /path/to/folder mkdir landing cd landing git clone https://github.com/Arvind-4/Landing-Page-in-Django.git . -``` +``` -### Step 2: Create a Virtual Environment: -``` +- Create a Virtual Environment + +```bash pip3 install virtualenv cd landing python3.9 -m virtualenv . source bin/activate ``` + **For Windows use:** `.\Scripts\activate` -### Step 3: Install Dependencies: -``` +- Install Dependencies + +```bash pip install -r requirements.txt ``` +Add Your Environment variable to `.env`. + Refer `.sample.env` file. -### Step 3: Run the Server -``` +- Make Migrations + +```bash cd /path/to/folder/landing python manage.py makemigrations python manage.py migrate -python manage.py createsuperuser +``` + +- Run Dev Server + +```bash python manage.py runserver localhost:8000 ```