Follow these steps to set up the project locally.
You will need the following things properly installed on your computer.
- Git
- Node.js 8.x LTS
- Yarn
- Ember CLI -
yarn global add ember-cli
It is also recommended to have watchman installed to speed up the file-watcher/auto-build
service of the ember build server.
git clone <repository-url>
this repositorycd open-event-frontend
Note : If you want to contribute, first fork the original repository and clone the forked repository into your local machine followed by cd
into the directory
git clone https://github.com/USERNAME/open-event-frontend.git
cd open-event-frontend
yarn
cp .env.example .env
node scripts/l10n.js generate
-
Open Event Frontend supports FastBoot which is disabled for the development environment and is controlled by the flag
FASTBOOT_DISABLED
in the.env
file. -
By default, the
.env.example
file specifies theAPI_HOST
aslocalhost:5000
and assumes, that the open-event-server is already up and running. If you intend to work on issues which involve both the frontend, and the backend, please install and set it up first before proceeding to run the frontend. If however, you intend to work on just the frontend, please change the URL forAPI_HOST
tohttps://open-event-api-dev.herokuapp.com
which is a test deployment of the open-event-server.
ember serve
- Visit your app at http://localhost:4200.