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.
-
Navigate to the frontend directory of the project.
-
Build the Vue.js project for production:
npm install
npm run build
-
Once the build process is complete, you will find the production-ready files in the
dist/
directory. -
Upload the contents of the
dist/
directory to your web server or hosting provider. -
Ensure that your web server is properly configured to serve the frontend files.
-
Navigate to the backend directory of the project.
-
Install the Python dependencies using pip:
pip install -r requirements.txt
-
Set up your Django project settings, including database settings, secret key, allowed hosts, etc., in the appropriate configuration file (
settings.py
). -
Migrate the database schema to ensure it's up to date:
python manage.py migrate
- Optionally, create a superuser for accessing the Django admin interface:
python manage.py createsuperuser
- Run the Django development server or deploy it using a production-ready server like Gunicorn or uWSGI:
python manage.py runserver
- Make sure your backend server is accessible and properly configured.
-
Install PostgreSQL on your server if it's not already installed.
-
Access the PostgreSQL command-line interface:
psql -U postgres
- Create a new database named "kaizntree":
CREATE DATABASE kaizntree;
- 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;
-
Make sure to update your Django settings with the database credentials and settings.
-
Ensure that your PostgreSQL server is properly configured and accessible.