Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 809 Bytes

File metadata and controls

47 lines (35 loc) · 809 Bytes

Getting Started

Important Links

  • Main Google Doc
    https://docs.google.com/document/d/1YN18ZGSZMXhZJcrxaBlKDWdJ0PicjDUK86woeh2J26I/edit#heading=h.wkmuuozdb8tn
    

Technologies Used

  • Reactjs
  • TypeScript
  • Expressjs
  • Prisma
  • Postgres

Installing

To run a local copy of this project, follow the steps below

  • If you haven't installed npm, run the command below to install the latest version
    npm install npm@latest -g
  • Clone the repo
    git clone https://github.com/EOT-Event-Organizer-s-Toolbox/eot-codebase.git
  • Navigate to the web folder and install NPM packages
    cd web
    npm install
  • Navigate to the server folder and install NPM packages
    cd ..
    cd server
    npm install

Back to top