Getting Started
Let's get started developing your first new feature as a Voxable developer in less than 5 minutes.
Prerequisites
- Node.js (v18.8.0 or higher)
- asdf is a great way to manage your Node.js and npm versions
- Docker (v20.10.8 or higher)
- Docker Compose (v1.29.2 or higher)
- Git (v2.33.0 or higher)
Setup
Clone the repository
git clone
Install dependencies (yes, you need
--force
, for the moment)npm install --force
Start the development environment
npx nx serve
Run NX console
- Navigate to the NX Sidebar
- Select
run-many
from the list of common NX commands. - Select
serve
- Select and run
nx run-many --target=serve
Open the app in your browser
open http://localhost:3000
Next Steps
- Learn about the project structure
- Learn about the development environment
- Learn about the database
- Learn about the API
- Learn about the frontend
- Learn about the deployment process