icodebyamanda / mvp_dance-directory

Bootcamp Project: To another student’s MVP, added a full authentication capability to the instructors’ users group: a login component, a tested encrypted password, tested authentication and authorisation process via a guard as well as a registration component.
0 stars 2 forks source link

Access Into #1

Open icodebyamanda opened 3 years ago

icodebyamanda commented 3 years ago

Elisabeth's repo: https://github.com/ellie2009/mvp_dance-directory

Routes

app.use('/', indexRouter); app.use('/dancestyles', danceStylesRouter); app.use('/instructors', instructorsRouter); app.use('/classes', classesRouter);

Db mysql -u root -p

SHOW databases; USE sxs; SHOW tables; DESCRIBE responses; SELECT * FROM responses;

https://www.sqlservertutorial.net/sql-server-basics/

Development Run npm start in project directory to start the Express server on port 5000 In another terminal, do cd client and run npm start to start the client in development mode with hot reloading in port 3000. Page at http://localhost:5000/responses/determined

Documentations

MDN docs Express docs MySQL docs React docs