Setting Up Your Environment
Overview
This article covers the first steps to get started. We're going to make sure your workstation is ready for development and give an overview of the Apostrophe CLI. While these steps will work directly for Mac OS and many Linux distributions, Windows OS users will need to install WSL 2 first. Importantly, for both WSL2 and other Linux users we recommend checking to make sure that the Linux distribution you are installing or using is supported by the MongoDB Community Edition. Alternatively, you can also elect to install and use Docker for running the MongoDB server, which is OS agnostic.
Requirements
Let's get started with what you will need to have installed on your machine to run a project locally:
📌 For Windows OS users, we only support development in the WSL 2 environment or another virtual Linux environment. All the additional instructions on this page should be followed from the WSL 2 prompt, not the Windows command or Powershell prompt. If you are having difficulties, there is further guidance in the documentation that contains additional troubleshooting instructions for the entire install including WSL 2, Node.js, npm, and MongoDB.
1. Node.js 18+/ npm
Node.js is a JavaScript runtime and it runs server-side JS, including the Apostrophe app. npm is automatically included with Node. You can download and install these at https://nodejs.org. However, we (and indeed Microsoft) highly encourage the use of NVM to allow you to switch easily between Node and npm versions. You can find the installation instructions here.
⚠️ NVM is only available for Linux / Mac OS / Windows WSL.
Once installed, you can switch between different versions of Node and npm by using
$ nvm install 18
# and
$ nvm use 18
See the nvm
page for more options.
2. MongoDB 6.0+
Installation of the MongoDB Community Edition is slightly different for each OS. We advise that you follow the instructions on the MongoDB website for your OS. Again, Windows users should install from within WSL2 and follow the instructions for their Linux distribution.
📌 When using Ubuntu 22.04, the only currently supported MongoDB version is 6.04 or newer. If your production environement requires that you use an earlier version of MongoDB for development, we advise you use Ubuntu 20.04.
In addition to installing MongoDB Community Edition, there are options in the instructions for restarting MongoDB following a system reboot. You can opt to either follow these instructions or manually start mongoDB each time you reboot.
To check for successful installation of these tools, try the following commands:
# This will display your Node.js version and npm version (installed with Node),
# if installed successfully.
node -v && npm -v
# This will display your MongoDB version, if installed successfully.
mongod --version
Installing the Apostrophe CLI
There is an official CLI for quickly setting up starter code for your Apostrophe project. Once in a project, the CLI can also help add new module code with a single command so you can focus on the aspects that are unique to your project rather than copying or remembering boilerplate.
The CLI is not required to work with Apostrophe, but it makes developing with Apostrophe faster and takes care of the more repetitive tasks during development. This is especially true when creating a new project.
Install the CLI globally through npm. npm install --location=global @apostrophecms/cli
📌 You can review more information about the Apostrophe CLI in the doc here
The CLI is not required to work with Apostrophe. It primarily makes developing with Apostrophe faster and takes care of the more repetitive tasks during development.
Creating a project
Before creating a project, make sure you have started your MongoDB server locally. MongoDB can be configured to run all the time or started as needed, but it must be up and running to provide a place for ApostropheCMS to store its information.
The easiest way to get started with Apostrophe is to use one of the official starter kit projects. If you have the CLI installed, go into your normal projects directory and use the command:
apos create apos-app
This will install the "Essentials" starter kit.
TIP
💡 To install other starter kits, pass the --starter
flag, along with the short name of one of our starter kits. For example:
apos create apos-app --starter=ecommerce
The CLI will take care of installing dependencies and walk you through creating the first user. You can then skip down to the "Finishing touches" section. If you don't want to use the CLI, or if you want to see other things it does for you, continue on.
To get started quickly without the CLI, clone the starter repository:
git clone https://github.com/apostrophecms/starter-kit-essentials apos-app
If you want to change the project directory name, please do so. We will continue referring to apos-app
.
Open the app.js
file in the root project directory. Find the shortName
setting and change it to match your project (only letters, digits, hyphens and/or underscores). This will be used as the name of your database.
// app.js
require('apostrophe')({
shortName: 'apos-app', // 👈
modules: {
// ...
Excellent! Back in your terminal, we'll install dependencies:
npm install
Before starting up you'll need to create an admin-level user so that you can log in. After running the following command, Apostrophe will ask you to enter a password for this user.
node app @apostrophecms/user:add my-user admin
# Replace `my-user` with the name you want for your first user.
Finishing touches
You should also update the session secret for Express.js to a unique, random string. The starter project has a placeholder for this option already. If you do not update this, you will see a warning each time the app starts up.
// modules/@apostrophecms/express/index.js
module.exports = {
options: {
session: {
// If this still says `undefined`, set a real secret!
secret: undefined
}
}
};
Starting up the website
Start the site with npm run dev
. The app will then watch for changes in client-side code, rebuild the packages, then refresh the browser when it detects any. You can log in with the username and password you created at http://localhost:3000/login.
TIP
If you are starting the site in a production environment or do not want the process to watch for changes, start the site with node app.js
.
Next steps
Now that Apostrophe is installed, you're ready to start building. Check out the guide to learn about essential features with plenty of code examples. To learn about building a site from scratch, jump to our tutorial series. If you are looking to explore Apostrophe's inner workings peruse the reference guide.