| sidebar_position |
|---|
1 |
# Clone the repository
git clone git@github.com:frameless/strapi.git
# Navigate to the project directory
cd frameless-cmsBefore running the app, make sure you have the following prerequisites installed on your machine:
- Yarn Classic version 1.22.19
- Node.js version 20.18.1
Follow these steps to prepare the app:
-
Open your terminal and navigate to the root level of the app.
-
Install Dependencies:
yarn install
-
Build the Project:
yarn build
These commands will ensure that all necessary dependencies are installed and the project is built successfully. Once completed, you'll be ready to run the app.
To run the application as a Docker container on your Mac, follow these steps:
-
Install Docker Desktop:
- Go to the Docker website and download Docker Desktop for Mac.
- Install Docker Desktop by following the installation instructions for macOS.
- Ensure you have
docker-composeavailable. For example by installing docker-compose with Homebrew
-
Launch Docker Desktop:
- Once Docker Desktop is installed, launch it from your Applications folder.
-
Add Environments variables to the project If there are no existing environment variables, run:
yarn init:env
This command generates a .env file containing the necessary environment variables. The generated values are suitable for the PDC project in Docker production environment.
-
Running PDC in development mode Update the generated .env file or create a .pdc.dev.env file with the same variables, modified for development. For development, you need to adjust certain variables (for example, set NODE_ENV=development) to ensure the environment behaves correctly.
-
Running the VTH project Run the same yarn init:env command, then create a .vth.dev.env file with the same variables, modified for VTH development.
Environment variable definitions are based on the .envrc.json file in the project root. You can find detailed documentation for each variable in the Environment Variables file.
Note: When updating
.envrc.json, run the following command to regenerate the documentation:yarn generate-env-docs
-
-
Run the Docker Image:
Start the environment with the following commands:
# development cd bin/ && bash ./deploy.sh project-name dev up --build # or # example cd bin/ && bash ./deploy.sh pdc-dashboard dev up --build # production cd bin/ && bash ./deploy.sh project-name prod up --build # example cd bin/ && bash ./deploy.sh pdc-dashboard prod up --build
Valid project names are:
pdc-dashboardvth-dashboardkennisbank-dashboard
Visit http://localhost:1337/admin to set up an admin account. Afterward, configure the right permissions for unauthenticated users and field labels in Settings > CONFIG SYNC > Interface. Click the Import Button.
Now, you can create products and FAQ items using the Content Manager and view them on the frontend: http://localhost:3000/.
Before starting the server without Docker, create a .env file for both the frontend and the Strapi dashboard app.
Frontend env:
FRONTEND_PUBLIC_URL=http://localhost:3000
# these three environments variables below are required to be able to test the openFormsEmbed into the frontend. So you have to start the OpenForms server on your local machine
PANDOSEARCH_API_URL= # You can use the following API URL to test the functionality of the SearchBar component: https://public.pandosearch.com/developer.pandosearch.com/. Valid keys that can be used in the searchBar field include: search, server, highlighting, and help.
PREVIEW_SECRET_TOKEN= # the value should matched the same environment variable on the Strapi dashboard
STRAPI_PRIVATE_URL=http://0.0.0.0:1337/
STRAPI_PUBLIC_URL=http://0.0.0.0:1337/
Strapi Dashboard env:
NODE_ENV=development
ADMIN_JWT_SECRET=
API_TOKEN_SALT=
APP_KEYS=
FRONTEND_PUBLIC_URL=http://localhost:3000
HOST=0.0.0.0
JWT_SECRET=
OPEN_FORMS_API_TOKEN=
OPEN_FORMS_API_URL=http://localhost:8000/api/v2/
PORT=1337
# the value should matched the same environment variable on the Frontend
PREVIEW_SECRET_TOKEN=
STRAPI_PRIVATE_URL=http://0.0.0.0:1337
STRAPI_PUBLIC_URL=http://0.0.0.0:1337-
Using the Start Script:
-
Navigate to the app's root level and run the following command:
yarn development
-
You will be prompted with options to select. For example:
❯ yarn development yarn run v1.22.19 $ node scripts/start.js ? Select an option: … Build # build a specific app or both ❯ Dev # start a development server for a specific app or both Start # start a production server for a specific app or both -
Choose the "Dev" option to start a development server for the specified app.
-
-
Basic Way:
-
Change to the app's directory (e.g.,
cd apps/pdc-dashboard) and run:yarn dev
-
-
Using Yarn Workspaces:
- Run the following command from the project root:
yarn workspace @frameless/pdc-dashboard dev
Choose the option that best fits your workflow to start the server without Docker. Once the server is running, you can access the application from your browser.
If you encounter problems with building the project or starting the server, try the following steps:
-
Remove Build Folders:
-
Execute the following commands from the app root level:
yarn clean yarn build
-
This will remove the
/buildor/distfolders and rebuild the entire project.
-
-
Remove Node Modules:
-
If the issue persists, remove the
node_modulesfolders for all the apps using the command:npx npkill
-
Afterward, reinstall the dependencies with:
yarn install
-
These steps can help resolve common issues related to project build and server startup. If you continue to face problems, feel free to reach out for further assistance.