Skip to content

ksharma67/Kaizntree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Deployment Guide for Frontend, Backend, and Database

This guide provides step-by-step instructions for deploying the frontend, backend, and PostgreSQL database for the project. Make sure you have the necessary permissions and access to deploy to your chosen hosting environment.

Frontend Deployment

  1. Navigate to the frontend directory of the project.

  2. Build the Vue.js project for production:

npm install

npm run build

  1. Once the build process is complete, you will find the production-ready files in the dist/ directory.

  2. Upload the contents of the dist/ directory to your web server or hosting provider.

  3. Ensure that your web server is properly configured to serve the frontend files.

Backend Deployment (Django)

  1. Navigate to the backend directory of the project.

  2. Install the Python dependencies using pip:

pip install -r requirements.txt

  1. Set up your Django project settings, including database settings, secret key, allowed hosts, etc., in the appropriate configuration file (settings.py).

  2. Migrate the database schema to ensure it's up to date:

python manage.py migrate

  1. Optionally, create a superuser for accessing the Django admin interface:

python manage.py createsuperuser

  1. Run the Django development server or deploy it using a production-ready server like Gunicorn or uWSGI:

python manage.py runserver

  1. Make sure your backend server is accessible and properly configured.

Database Deployment (PostgreSQL)

  1. Install PostgreSQL on your server if it's not already installed.

  2. Access the PostgreSQL command-line interface:

psql -U postgres

  1. Create a new database named "kaizntree":

CREATE DATABASE kaizntree;

  1. Create a new user and grant it privileges on the "kaizntree" database:

CREATE USER your_username WITH PASSWORD 'your_password';

GRANT ALL PRIVILEGES ON DATABASE kaizntree TO your_username;

  1. Make sure to update your Django settings with the database credentials and settings.

  2. Ensure that your PostgreSQL server is properly configured and accessible.

About

Kaizntree-Full-Stack Take Home Challenge

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published