This Glide API was made by Federico Alecci.
To read about the API requirements, please go to requirements.md.
Node
https://nodejs.org/es/ or install using nvm
Yarn
https://classic.yarnpkg.com/en/docs/install
VSCode (optional)
https://code.visualstudio.com/ was used for developing this app.
To install the app dependencies, just run yarn in the terminal.
You should configure your .env file. There is a .env.example file you could use as reference.
To run the application, you could run one of these scripts in your terminal:
yarn dev: this script will watch for app changes and will reload it.yarn start: this script will just start the application.
If you want to debug the app and you are using VSCode, you code debug with using Node debugger.
The base url will be: http://localhost:3000/. You can explore the API accessing to http://localhost:3000/docs/ :).
To run the application tests, just run yarn test in the terminal.
Optionally, if you have Docker installed, there is a Dockerfile you can use to build and run the application:
docker build -t glide/api .
docker run -p 3000:3000 glide/api