https://github.com/dev-labs-bg/conflist
[Work in Progress] Conflist: Product Hunt for conferences.
https://github.com/dev-labs-bg/conflist
Last synced: 17 days ago
JSON representation
[Work in Progress] Conflist: Product Hunt for conferences.
- Host: GitHub
- URL: https://github.com/dev-labs-bg/conflist
- Owner: dev-labs-bg
- License: gpl-3.0
- Created: 2017-10-05T10:01:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T19:47:42.000Z (over 2 years ago)
- Last Synced: 2025-03-23T00:19:52.553Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.51 MB
- Stars: 2
- Watchers: 6
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Conflist
Website displaying recent and future conferences info. [https://conflist.devlabs-projects.info/](https://conflist.devlabs-projects.info/)This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).
You can find the most recent version of this guide [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md).## Installing
To install the project run:```
npm install
```You need to create a config.js file in the src folder containing url's used in the project from config-template.js:
```
baseUrl = `https://api.conflist.devlabs-projects.com/`;
loginUrl = `${baseUrl}auth/twitter?returnUrl=http://localhost:3000/gate`;
```
The config.js file is added in .gitignore.## Run
First build css:
```
npm run build-css
```And run the project with:
```
npm start
```## Contributing
This is an open source project, so if you want to contribute you need to:
```
1. git clone
2. npm install
3. npm run watch-css
4. npm start
```