Synthesis Image Noise Detection on Distributed Data : A web app to collect data on noise detection by humans on images. https://diran.univ-littoral.fr/doc
rigwild 29d39ddf57 Hotfix config | il y a 5 ans | |
---|---|---|
api | il y a 5 ans | |
public | il y a 5 ans | |
src | il y a 5 ans | |
.dockerignore | il y a 5 ans | |
.editorconfig | il y a 5 ans | |
.eslintrc.js | il y a 5 ans | |
.gitignore | il y a 5 ans | |
Dockerfile_back | il y a 5 ans | |
Dockerfile_front | il y a 5 ans | |
LICENSE | il y a 5 ans | |
README.md | il y a 5 ans | |
babel.config.js | il y a 5 ans | |
config.js | il y a 5 ans | |
docker-compose.frontapp_only.yml | il y a 5 ans | |
docker-compose.yml | il y a 5 ans | |
package.json | il y a 5 ans | |
yarn.lock | il y a 5 ans |
Travaux développés par Antoine dans le cadre de son stage de DUT2.
PORT=8080 SERVE_CLIENT=true docker-compose up
PORT=8080 SERVE_CLIENT=false docker-compose up
PORT=8080 docker-compose -f docker-compose.frontapp_only.yml up
To change the port the server is running on set the environnements variables if necessary (see project setup part).
Install project's dependencies.
yarn install
If this is a production build, set the NODE_ENV
environment variable to production
to enhance performance.
On Linux hosts :
export NODE_ENV=production
On Windows hosts :
SET NODE_ENV=production
Configure the project by modifying config.js.
Option | Default value | Description |
---|---|---|
apiPrefix | /api |
The url prefix for the API |
serverPort | 5000 |
The port used by the server |
imagesPath | images |
The directory where the images are stored |
serveClient | true |
Should the server serve client files from the /dist directory |
yarn run api:start
yarn run api:dev
yarn run api:lint
Files will be built to the dist/
directory.
yarn run app:build
yarn run app:dev
yarn run app:lint