Recipe finder π¨π»βπ³
Find recipes from Ingredients you already have.
This project is not finished yet. Current version : alpha.
Clone down this repository. You will need node
and npm
or yarn
installed globally on your machine.
.env file (root of the project):
variable | description |
---|---|
NODE_ENV | Running mode ('production' or 'development') |
DB_URL | Mongodb URL |
PORT | Node server port |
CORS_ORIGIN | CORS origin (development mode -> http://localhost:4200) |
SECRET_TOKEN_ACCESS | Private key to encode/decode a JWT |
Installation (client):
cd ./client
npm install
Start client:
ng serve --poll=2000
To visit app:
localhost:4200/
Installation (server):
cd ./server
npm install
Start client:
npm run dev
(nodemon)
npm run start
Installation & run application:
docker-compose up