This project was generated using Nx.
Run npm run start:front
for a dev server of frontend application. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
Install firebase CLI to run server locally: npm install -g firebase-tools
and then firebase use default
Run npm run start:api
for a dev server of backend application. Navigate to http://localhost:5000/mogilev-guide/us-central1/api. Run npm run build:api:watch
and the app will automatically reload build if you change any of the source files.
For example, http://localhost:5000/mogilev-guide/us-central1/api/api/interests navigates to interests controller of nodejs server.
To have permissions for firebase, you need api key, contact to Dzianis Pasiukou (dzianispasiukou@gmail.com) or js.machine.team@gmail.com for some details.
Run npm run build:api
to build api for this project. The build artifacts will be stored in the dist/
directory.
Run npm run build:front
to build frontend for this project. The build artifacts will be stored in the dist/
directory. Use the npm run build:front:prod
flag for a production build.
Run npm run test
to execute the unit tests via Jest.
Run npm run affected:test
to execute the unit tests affected by a change.
Run npm run e2e
to execute the end-to-end tests via Cypress.
Run npm run affected:e2e
to execute the end-to-end tests affected by a change.
Run npm run dep-graph
to see a diagram of the dependencies of your projects.
Visit the Nx Documentation to learn more.
For any assistance with this instruction contact Dzianis Pasiukou (dzianispasiukou@gmail.com) or js.machine.team@gmail.com
Run npm run start:api
for a dev server of backend application. Navigate to http://localhost:5000/mogilev-guide/us-central1/api/login/google. The API will redirect you to google authorization page. After successful login in google it will redirect on http://localhost:5000/mogilev-guide/us-central1/api/api/interests with your token in cookies. If someone navigate to http://localhost:5000/mogilev-guide/us-central1/api/api/* without token into cookies he redirects to http://localhost:5000/mogilev-guide/us-central1/api/login/google for authorization.
For run (on localhost:5000) you need follows in environment variables:
1 - GOOGLE_APPLICATION_CREDENTIALS - path to mogilev-guide-dev-key.json;
2 - CLIENT_ID - client's id from cloud project;
3 - CLIENT_SECRET - client's secret from cloud project;
4 - REDIRECT_URL="http://localhost:5000/mogilev-guide/us-central1/api/login/google/callback" - for return after google login;
5 - REDIRECT_IF_FAIL_URL="http://localhost:5000/mogilev-guide/us-central1/api/login/google" - for redirect users without right cookies;
6 - GOOGLE_INFO_URL="https://www.googleapis.com/oauth2/v1/userinfo" - for get user information to check cookies;
7 - SUCCESS_LOGIN_URL="http://localhost:5000/mogilev-guide/us-central1/api/api/interests" - first endpoint after successful authorization;