Giter VIP home page Giter VIP logo

reservations-api's Introduction

Reservation API!

Routes

  1. GET /info

  2. GET /user

  3. PATCH /info/:id

  4. PATCH /tablesize/:table_id

  5. GET /info/type

  6. POST /table/:id

  7. POST /find/:type/:party

  8. POST /reservation

  9. GET /myres

  10. GET /adminres/:r_id

  11. DELETE /reservation/:id

  12. Returns information about the restaurant

  13. Returns what kind of User it is

  14. Edit the info of restaurant (where id is the restaurant ID) a. You must have r_name,r_adress,r_phone, and r_type of restaurant in the req body

  15. Edit the Size of a table (where table_id is the table ID) a. You must have table_size in the req body

  16. Returns the avilable types of restaurants

  17. Add a new table (where id is the restaurant ID) a. You must have table_size and t_name in req body

  18. Returns avilable table in the chosen time slot where type is the id of the type and party is the size of the party both a. You must have from and to in the req body (both JSON dates)

  19. Returns the logged in users reservations

  20. Returns all the reservations of the restaurant where r_id is the retaurant ID

  21. Deletes a reservation where id is the reservation ID

Local dev setup

mv example.env .env
createdb -U "User" spaced-repetition
createdb -U "User" spaced-repetition-test

If your user has a password be sure to set it in .env for all appropriate fields. Or if using a different user, update appropriately.

npm install
npm run migrate

And npm test should work at this point

Configuring Postgres

For tests involving time to run properly, configure your Postgres database to run in the UTC timezone.

  1. Locate the postgresql.conf file for your Postgres installation.
    1. E.g. for an OS X, Homebrew install: /usr/local/var/postgres/postgresql.conf
    2. E.g. on Windows, maybe: C:\Program Files\PostgreSQL\11.2\data\postgresql.conf
    3. E.g on Ubuntu 18.04 probably: '/etc/postgresql/10/main/postgresql.conf'
  2. Find the timezone line and set it to UTC:
# - Locale and Formatting -

datestyle = 'iso, mdy'
#intervalstyle = 'postgres'
timezone = 'UTC'
#timezone_abbreviations = 'Default'     # Select the set of available time zone

Scripts

Start the application npm start

Start nodemon for the application npm run dev

Run the tests mode npm test

Run the migrations up npm run migrate

Run the migrations down npm run migrate -- 0

reservations-api's People

Contributors

stefanvinica avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.