diff --git a/src/pages/en/installation/docker.md b/src/pages/en/installation/docker.md index 5311033..a7e8b9d 100644 --- a/src/pages/en/installation/docker.md +++ b/src/pages/en/installation/docker.md @@ -13,11 +13,9 @@ DICK currently has a `Dockerfile` and `docker-compose.yml` included in the repo 2. Go into the newly created `dick` folder: cd dick - - 3. Edit the config file to let DICK know how to connect to your ASS instance - 4. Edit the `docker-compose.yml` to match your specific needs by changing the port, and volume location where your ass files are on your system + 3. Edit the `docker-compose.yml` to match your specific needs by changing the port, ASS domain, and volume locations. - 5. Run the docker compose file, this will create a new container and image named `dick`: + 4. Run the docker compose file, this will create a new container and image named `dick`: docker-compose up -d diff --git a/src/pages/en/installation/source.md b/src/pages/en/installation/source.md index 857a46a..098676a 100644 --- a/src/pages/en/installation/source.md +++ b/src/pages/en/installation/source.md @@ -14,13 +14,12 @@ DICK can be installed locally through source if you have `Node >=v16.14.0`: cd dick - 3. Edit the config file to let DICK know how to connect to your ASS instance - - 4. Go back to the root of `dick` and install the dependencies for the frontend: - - npm i + 3. Edit the .env file to your needs: + + cp .env.example .env + nano .env - 5. Lastly we can start DICK: + 4. Lastly we can start DICK: npm start diff --git a/src/pages/en/more/contributing.md b/src/pages/en/more/contributing.md index d0630fc..240890e 100644 --- a/src/pages/en/more/contributing.md +++ b/src/pages/en/more/contributing.md @@ -42,13 +42,12 @@ Running the project for development purposes is super easy. cd dick - 3. Edit the config file to let DICK know how to connect to your ASS instance, hopefully not a production one - - 4. Go back to the root of `dick` and install the dependencies for the frontend: - - npm i + 3. Edit the .env file to your needs: + + cp .env.example .env + nano .env - 5. Lastly we can start DICK in development mode: + 4. Lastly we can start DICK in development mode: npm start:dev