This simple project is a starting point for your take-home test. It is built with the following technologies:
- React, a JavaScript library for building user interfaces
- Next.js, a frontend framework for server-side rendering, easy routing, serverless RESTful API
- Prisma, a database ORM for Node.js
- Scaffolding is set up for SQLite
- You are free to use other databases of your choice
yarn
cp .env.example .env
Create a local SQLite database and run migrations.
npx prisma migrate dev --name init
Seed the database with the sample data from prisma/seed.js
.
npx prisma db seed --preview-feature
yarn dev
The app is now running, navigate to http://localhost:3000/
in your browser to explore its UI.
Update this README file by answering the questions below.
The date you're submitting this.
Please provide the url where we can find and interact with your running application.
Please provide us with the necessary instructions to run your solution if it is implemented with technologies different from the starting repo.
How much time did you spend on the assignment? Normally, this is expressed in hours.
Use this section to tell us about any assumptions that you made when creating your solution.
If applicable. Did you do something that you feel could have been done better in a real-world application? Please let us know.
2) How would you ensure a smooth user experience as 1000’s of users start using your app simultaneously?
What did you not include in your solution that you want us to know about? Were you short on time and not able to include something that you want us to know about? Please list it here so that we know that you considered it.
Have feedback for how we could make this assignment better? Please let us know.