This is the repository which holds GovTool's Voting Pillar packages.
For further information and documentation see GovTool.
This document serves as a comprehensive guide for setting up the backend and database components of our application.
- Node.js installed - Download link.
- PostgreSQL installed (if running locally without Docker) - Download link.
- Docker and Docker Compose installed (for Docker environment) - Download link
Database: PostgreSQL
Container: Docker
The @intersect.mbo/pdf-ui
is a React.js package that includes all the necessary logic and UI components required for the operation of a proposal discussion forum.
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.
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.
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:
-
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/govtool-proposal-pillar.git
-
Navigate to the Project Directory:
- After cloning, change into the project's root directory:
This directory contains all the files you need to set up the backend.
cd govtool-proposal-pillar
- After cloning, change into the project's root directory:
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.
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:
- Navigate to the
backend
directory of the project. - Install dependencies by running
npm install
. - Configure environment variables by creating a
.env
file in the backend directory, following the.env.example
template if available. - Start the Strapi server in development mode with
npm run develop
, allowing for real-time updates and access to the admin panel.
- Install PostgreSQL if not already installed and ensure it is running.
- Create a new database for the project, noting down the credentials.
- Update the
.env
file in the backend directory with your database credentials (host, port, username, database name, and password).
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:
-
Prerequisites:
- Confirm that Docker and Docker Compose are installed on your machine. These tools are essential for creating and managing multi-container Docker applications.
-
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.
- Open a terminal and change your directory to the root of your project where the
-
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.
- Execute the following command to start up all the services as defined in your
-
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. - 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 yourdocker-compose.yaml
file, allowing secure and straightforward connections from your backend service.
- Backend:
- With all services running, your application components should be accessible at the following URLs:
-
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.
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.
For more detailed information, check the README files in the corresponding folders:
-
Backend setup - Detailed instructions for setting up the backend part of the application.
-
pdf-ui - Detailed information regarding the PDF-UI package setup and usage.