mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
18 lines
349 B
Markdown
18 lines
349 B
Markdown
# template of the .env file
|
|
```
|
|
ADMIN_PASSWORD = 'admin password here'
|
|
HOST = 'traque.rezel.net'
|
|
PORT = 3001
|
|
SSL_KEY = "ssl/privkey.pem"
|
|
SSL_CERT = "ssl/cert.pem"
|
|
```
|
|
# Run dev version
|
|
First install the dependencies
|
|
```
|
|
npm install
|
|
```
|
|
Then run the server
|
|
```
|
|
npm start
|
|
```
|
|
Make sure an uploads folder is present in the root directory of the backend |