Clone me!
HTTPS:
git clone https://github.com/Lazytangent/DataFlow.git
SSH:
git clone git@github.com:Lazytangent/DataFlow.git
cd
into the repositorycd
into thebackend
directory.npm install
the dependencies.- Make an
.env
file based on the.env.example
file given. - Run this command to create the user based on the user defined in the
.env
file.psql -c "CREATE USER data_flow_app with PASSWORD 'password' CREATEDB;"
- Run
npx dotenv sequelize db:create
to create the database.
- In another terminal,
cd
into thefrontend
directory. npm install
the dependencies.
In both terminals, run npm start
to start the servers.
Go to the WALKTHROUGH.md for the detailed walkthrough.
Go see NOTES.md for some side notes on things you can read more about.