##About the Team
#Joshua Evans
I spent the last ten years working in the music industry. I owned an independent record store for much of that time. While running my business, I was always looking for ways to solve problems, often with technical solutions. I became passionate about learning coding, realizing that there were opportunities to contribute to the future of the music industry with technological applications.
#Michael Axelson
Most of my experience is in the financial services industry. I am currently working on projects primarily in JavaScript, with beginner level experience in Python and SQL. I am very interested in full-stack application, using Node.js for the backend and React for the front-end.
brew install node
cinst nodejs
# or for full install with npm
cinst nodejs.install
sudo apt-get install nodejs npm
Mongo DB Homepage Installation Page
Setting up the Roomlet Repository in local file directory
yarn install
4. Create a .env file in the root directory of the repository, containging the following information..
AUTH0_CLIENT_ID=''
AUTH0_CLIENT_DOMAIN='username.auth0.com'
NODE_ENV='dev'
AUTH0_API_TOKEN=''
5. To view the repository in the browser, enter the following command in the root directory of the repository.
yarn watch
The repository is running on port 8080 (http://localhost:8080)
Setting up the Roomlet-Api Repository in local file directory
yarn install
4. Create a .env file in the root directory of the repository, containing the following information..
PORT=3000
CORS_ORIGINS: 'http://localhost:8080'
API_URL='http://localhost:3000'
MONGODB_URI='mongodb://localhost/dev'
5. To turn on the Mongo Database for this repository, run the following command in the root directory of the API repository
yarn run mongo-on