This is a mobile-first web app designed for local communities to share events organised by local organsations. It allows users to browse a list of events, select an event and sign up for it. There is an option to register for events as a guest or as a logged-in user.
This app is designed to be easy to use for a wide target audience and provides a more community-focussed way to promote events. It provides the facility to include regular group meetings as well as one-off events and includes events that do not need a recorded sign up.
The backend has been built ready to implement ratings and reviews, questions and answers, and frequently asked questions for events - features that can be included in future iterations. By focussing on local businesses and organisations, and implementing these interactive features, the platform encourages users to interact with each other and get involved in their local community. This is something that larger and more generic events platforms do not offer.
There are three registered user types: Attendee, Organiser and Admin. An organiser has access to a staff dashboard for their organisation where they can view and manage events and create new ones. An organiser can still register for events in the same way as an attendee. Guest users can sign up for an event without an account. The system creates an attendee record with their name and email address. The admin user is designed to have access to all events, users and organisations management. This is a user who oversees the whole platform, moderates it, and resolves any queries. This feature will be implemented in future iterations.
Some test accounts will be provided in order to use the platform as an attendee and an organiser.
Users are initially taken to the home page which lists all available published events. They can then filter these by clicking on the category buttons followed by the subcategory button links below. A range of filters are available. On a mobile the user can toggle the filters on and off to save space.
For more information about the features planned please refer to the planning documentation on my Notion site as detailed below under Link to Project Plans and Diagrams.
This app is deployed to Netlify at Scene Locally
The link to the deployed backend can be found here: https://scene-locally.onrender.com/api
Please use the following test accounts to use the app as an attendee or an organiser:
Attendee:
- Name: Rajesh Kumar
- Email: attendee7@example.com
- Password:
chocolate99
Attendee:
- Name: Aisha Malik
- Email: attendee8@example.com
- Password:
musicfan1
Organiser:
- Name: Charlotte Anderson
- Email: organiser3@riverbankconservation.org
- Password:
chips123cat
Organiser:
- Name: Daniel Stewart
- Email: organiser5@meadowbridgewellbeing.org
- Password:
25fluffyducks
The frontend repository can be found here: https://github.com/kwildeDev/fe-scene-locally
The backend repository can be found here: https://github.com/kwildeDev/be-scene-locally
Events Platform Planning page on Notion
Node.js, PostgreSQL, Express
React, Axios, TypeScript, Chakra UI, React Form Hook, Zod, React Select.
These instructions will guide you on how to run the frontend application on your local machine. For instructions on setting up the backend, please refer to the backend repository README.
- Node.js: (Recommended v22.14.0). Download from https://nodejs.org/
- npm or Yarn:.
- npm: Comes with Node.js. Check version with
npm -v. - Yarn: Installation: https://yarnpkg.com/getting-started
- npm: Comes with Node.js. Check version with
- Git: For cloning the repository. https://git-scm.com/downloads
-
Clone the frontend repository:
git clone https://github.com/kwildeDev/fe-scene-locally.git cd fe-scene-locally -
Install frontend dependencies:
npm install # or yarn install -
Backend Configuration:
- This frontend project is configured to work with a deployed backend on Render. The code can be found at the top of
api.ts
const api = axios.create({ baseURL: 'https://scene-locally.onrender.com/api', });To run it with a local backend you need to create a
.env.localfile in the root of the frontend project. Add the following environment variable, ensuring it points to your backend API:VITE_API_BASE_URL=http://localhost:<your_backend_port>/api(Replace<your_backend_port>with the port your backend server will run on. The default is often3000or8080, but check your backend configuration.)- You may need to configure other frontend-specific environment variables as well. Refer to the project code or any
.env.examplefile for more details.
- This frontend project is configured to work with a deployed backend on Render. The code can be found at the top of
-
Run the frontend development server:
npm run dev # or yarn dev- The frontend application should now be running, typically at
http://localhost:5173(or a similar address) in your web browser.
- The frontend application should now be running, typically at
Important: For the frontend to function correctly in your local development environment, you will also need to have the backend server running. Please follow the setup instructions in the backend repository README.