mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 02:10:18 +01:00
further imporved readme
This commit is contained in:
@@ -48,3 +48,5 @@ https://example.com:3000
|
|||||||
## Deployment
|
## Deployment
|
||||||
Put your certificate and private key in the proxy/ssl folder. They need to be named `cert.pem` and `privkey.pem`.
|
Put your certificate and private key in the proxy/ssl folder. They need to be named `cert.pem` and `privkey.pem`.
|
||||||
You can then depploy the docker application with `docker compose up`
|
You can then depploy the docker application with `docker compose up`
|
||||||
|
|
||||||
|
The reverse proxy is used to get https to the next app on port 3000.
|
||||||
@@ -1,8 +1,18 @@
|
|||||||
# template of the .env file
|
# template of the .env file
|
||||||
```
|
```
|
||||||
ADMIN_PASSWORD = 'admin password here'
|
ADMIN_PASSWORD = 'admin password here'
|
||||||
HOST = '10.192.64.61'
|
HOST = 'traque.rezel.net'
|
||||||
PORT = 3001
|
PORT = 3001
|
||||||
SSL_KEY = "key.pem"
|
SSL_KEY = "../proxy/ssl/privkey.pem"
|
||||||
SSL_CERT = "server.crt"
|
SSL_CERT = "../proxy/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
|
||||||
2
traque-back/uploads/.gitignore
vendored
2
traque-back/uploads/.gitignore
vendored
@@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!.gitignore
|
|
||||||
@@ -1,5 +1,17 @@
|
|||||||
# Template of the .env file
|
# Template of the .env file
|
||||||
```
|
```
|
||||||
NEXT_PUBLIC_SOCKET_HOST = 'quentinrsl.com'
|
NEXT_PUBLIC_SOCKET_HOST = 'traque.rezel.net'
|
||||||
NEXT_PUBLIC_SOCKET_PORT = 3001
|
NEXT_PUBLIC_SOCKET_PORT = 3001
|
||||||
|
```
|
||||||
|
|
||||||
|
Where NEXT_PUBLIC_SOCKET_HOST is the host of the socket server and NEXT_PUBLIC_SOCKET_PORT is the port of the socket server. Those values are set by the HOST and PORT env variables in the backend.
|
||||||
|
|
||||||
|
# Run dev version
|
||||||
|
First install the dependencies
|
||||||
|
```
|
||||||
|
npm install
|
||||||
|
```
|
||||||
|
Then run the server
|
||||||
|
```
|
||||||
|
npm run dev
|
||||||
```
|
```
|
||||||
Reference in New Issue
Block a user