Foxycle
-
run
git clone https://github.com/gwayne9955/FoxCycle.git
-
navigate to that newly created directory
-
Create a file called
config.json
in/api
with this content:
{
"dev": {
"host": "localhost",
"port": 3306,
"username": "root",
"password": "password",
"database": "dev",
"logging": true
},
"test": {
"host": "localhost",
"port": 3306,
"username": "root",
"password": "password",
"database": "test"
}
}
- In MySQL in VSCode, run a SQL query to create a database
dev
andtest
create database dev
create database test
-
run
npm i
in the api/ and client/ directories -
run
docker-compose up
in the top level directory -
run
npm run start
in the api/ directory -
run
npm run serve
in the client/ directory -
Query the
dev
database with the contents ofdata.sql
found in the root directory using Sequel Pro -
In your browser, navigate to
localhost:8080
- username: admin
- password: admin
- username: a
- password: a
- Ishaan Jain - Team Lead
- Evan Zhang - Architect
- Abhijeet Sidhu - DB Lead
- Garrett Wayne - UI Lead