Frontend for Driven.t, an event management solution.
Driven.t is a web browser application with which you can manage every single aspect of your event.
- Clone this repository
- Install all dependencies
npm i-
Populate
.envfile based on.env.example.REACT_APP_API_BASE_URLshould point to your API server (driven.t-back) -
Run the back-end in a development environment:
npm run startnpm run build
npm start.env.development and .env.test must be changed if you and to run the application locally or inside docker. You can populate files based on .env.example file, but you need to consider the following:
- Running application locally (postgres and node):
Add your postgres credentials and make sure to create given database before running the application.
- Running application inside docker (postgres and node):
Set POSTGRES_HOST to drivent-postgres-development for .env.development and drivent-postgres-test for .env.test file. It is the name of the postgres container inside docker-compose file. Docker Compose will start the postgres container for you, create the database and host alias for you.
- Running application locally (node) but postgres is running inside docker:
Set POSTGRES_HOST to localhost for .env.development and localhost for .env.test file. Docker compose is configured to expose postgres container to your localhost.
Please notice that every ENV that should be available on browser should start with REACT_APP_ prefix. There are several things you need to do when you add new ENV VARIABLES:
- Add them to
.env.examplefile - Add them to your local
.envfile - Add them to your docker-compose.yml file (just the name, not the value). Only envs listed in the environment section will be exposed to your docker container.
- Add them (prod version) to your github repo secrets. They will be used to generate the
.envfile on deploy.