Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix npm install command #208

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/docs/getting-started/building.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { Callout } from 'nextra-theme-docs'
Building FOSSBilling from the source code is rather simple and only requires a few simple steps.

1. Clone the FOSSBilling repository and then move to that directory: `git clone https://github.com/FOSSBilling/FOSSBilling.git && cd FOSSBilling`
2. Install NPM dependencies: `npm -i`
2. Install NPM dependencies: `npm i`
3. Install composer dependencies: `composer install`
4. Build the front-end assets: `npm run build`
5. (_Optional_) Download the [latest translations](https://github.com/FOSSBilling/locale/releases/tag/latest) from the locale repository and extract the contents to the `src/locale` directory. Ensure you overwrite any existing files.
Expand Down