Skip to content

Latest commit

 

History

History
148 lines (96 loc) · 8.23 KB

README.md

File metadata and controls

148 lines (96 loc) · 8.23 KB

Boilerplate Project Documents

Welcome to the official repository for the Web App Boilerplate.

Table of content:

Introduction

This document serves as a comprehensive guide for setting up the full stack of our application, which includes the backend, frontend, and database components.

Prerequisites

Tech stack:

Server: Node, Strapi

Database: PostgreSQL

Frontend: Next.js

Container: Docker

Backend

Our backend is powered by Strapi, a versatile headless CMS built on Node.js. It offers an intuitive admin panel, coupled with extensive RESTful and GraphQL API support, enabling efficient content management and API development.

Database

For data persistence, we utilize PostgreSQL, known for its robustness, scalability, and reliability. This choice ensures that our application's data layer is secure, efficient, and capable of handling growth.

Frontend

The frontend is developed with Next.js, a React framework that allows for server-side rendering and static site generation. This choice enables us to create fast, SEO-friendly web pages that integrate seamlessly with our Strapi backend.

The instructions that follow will guide you through setting up each component of our application stack, ensuring a cohesive development and deployment process.

Getting started

Before you begin setting up the application, you'll need to clone the repository from GitHub to get a local copy of the code. Follow these steps to clone the repository and start setting up the application components:

  1. Clone the Repository:

    • Open a terminal on your computer.
    • Navigate to the directory where you want to store the project.
    • Run the following command to clone the repository:
      git clone https://github.com/IntersectMBO/boilerplate-project.git
      
  2. Navigate to the Project Directory:

    • After cloning, change into the project's root directory:
      cd boilerplate-project
      
      This directory contains all the files you need to set up the application, including the Docker Compose files and the separate directories for the backend and frontend components.

By cloning the repository, you ensure that you have the latest version of the code and all the necessary files to get started with the application setup.

Running locally

To run the application locally, you need to have Node.js installed for the backend and frontend parts, as well as the necessary databases. Follow these steps:

Backend setup

  1. Navigate to the backend directory of the project.
  2. Install dependencies by running npm install.
  3. Configure environment variables by creating a .env file in the backend directory, following the .env.example template if available.
  4. Start the Strapi server in development mode with npm run develop, allowing for real-time updates and access to the admin panel.

Database configuration

  1. Install PostgreSQL if not already installed and ensure it is running.
  2. Create a new database for the project, noting down the credentials.
  3. Update the .env file in the backend directory with your database credentials (host, port, username, database name, and password).

Frontend setup

  1. Navigate to the frontend directory of the project.

  2. Install dependencies by running npm install.

  3. Configure Environment Variables: Create or edit a .env file in the frontend directory to include environment variables specific to your Next.js application. For seamless integration with the Strapi backend, add the following line to specify the backend API URL: NEXT_PUBLIC_API_URL=http://localhost:1337

  4. Start the Next.js server with npm run dev for development mode. This command serves your frontend application and hot-reloads for any changes.

By following these detailed steps for each part of the stack, you will have a fully functional full-stack application ready for further development and eventual deployment.

Additional Information

For more detailed information about setting up and running each part of the application, please refer to the README files located in the respective directories:

  • Backend setup - Detailed instructions for setting up the backend part of the application.
  • Frontend setup - Detailed instructions for setting up the frontend part of the application.

Running using docker compose

Leverage Docker Compose to simplify the process of deploying the full stack of our application, which includes the backend, frontend, and database. Follow these steps to get everything up and running smoothly:

  1. Prerequisites:

    • Confirm that Docker and Docker Compose are installed on your machine. These tools are essential for creating and managing multi-container Docker applications.
  2. Navigate to your project's root directory:

    • Open a terminal and change your directory to the root of your project where the docker-compose.yaml file is located. This file contains the configuration for all the services that make up your application.
  3. Start services with docker compose:

    • Execute the following command to start up all the services as defined in your docker-compose.yaml file. The --build flag ensures that Docker builds fresh images for your services, reflecting any recent changes you might have made.
      docker-compose up --build
      
    • This command will spin up the backend, frontend, and database containers, linking them together based on your configurations.
  4. Accessing the application:

    • With all services running, your application components should be accessible at the following URLs:
      • Backend: http://localhost:1337 – This is where your Strapi CMS will be accessible for managing content and accessing the API.
      • Frontend: http://localhost:3000 – Your Next.js frontend application will be available here, ready to serve your site's visitors.
      • Database: While the database itself won't be directly accessible via a simple URL (since it's meant to be accessed by your backend service), it's running on a mapped port 4321 on your host machine. This setup is specified in your docker-compose.yaml file, allowing secure and straightforward connections from your backend service.

Overview of services in docker compose:

  • Backend service: Configured to run Strapi on port 1337, this service automatically connects to the PostgreSQL database, ensuring your CMS has all the data it needs to operate.

  • Database service: This service runs PostgreSQL and is set to be accessible on port 4321 from the host machine. It's crucial for storing all your application's data securely and efficiently.

  • Frontend service: Your Next.js application will be served on port 3000, connecting to the Strapi backend to fetch content and data. This setup provides a seamless experience for developers and users alike.

By following these steps, you can quickly get your full-stack application running using Docker Compose, ensuring each component is correctly configured and interconnected for optimal performance.