-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
120 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# How to Set Up GameVault Backend for Local Development | ||
|
||
## What You Need | ||
|
||
- [Git](https://git-scm.com/) | ||
- [Node.js LTS](https://nodejs.org/) | ||
- [pnpm](https://pnpm.io) | ||
- [Visual Studio Code (\*)](https://code.visualstudio.com/) | ||
- [Docker (\*)](https://www.docker.com/) | ||
|
||
`Items with an asterisk (*) are optional, but recommended.` | ||
|
||
## Steps to Get Started | ||
|
||
1. **Clone the Repository** | ||
|
||
Open your terminal and run: | ||
|
||
```bash | ||
git clone https://github.com/Phalcode/gamevault-backend | ||
``` | ||
|
||
2. **Go to the Project Folder** | ||
|
||
Navigate to the directory you just downloaded: | ||
|
||
```bash | ||
cd gamevault-backend | ||
``` | ||
|
||
3. **Install the Required Dependencies** | ||
|
||
Install all necessary packages: | ||
|
||
```bash | ||
pnpm install | ||
``` | ||
|
||
4. **Set Up Your Environment** | ||
|
||
Copy the sample environment file: | ||
|
||
```bash | ||
cp .dev.env .env | ||
``` | ||
|
||
5. **Start the App or Run Tests** | ||
|
||
To start the app: | ||
|
||
```bash | ||
pnpm start | ||
``` | ||
|
||
To run tests: | ||
|
||
```bash | ||
pnpm test | ||
``` | ||
|
||
## Contributing | ||
|
||
Before contributing, please review and agree to the [Contributors License Agreement](CONTRIBUTING.md) and the [License](LICENSE.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters