Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/brandoncardoso/exchange

Meetup clone but with multiple groups per event.
https://github.com/brandoncardoso/exchange

expressjs javascript nodejs sequelizejs website

Last synced: 12 days ago
JSON representation

Meetup clone but with multiple groups per event.

Awesome Lists containing this project

README

        

# exchange

### Setup
1. Install [Node.js](https://nodejs.org/en/)
2. Clone the repo
```
git clone [email protected]:BrandonCardoso/exchange.git
```
3. Install node modules
```
cd exchange
npm install
```
4. Install [MariaDB](https://mariadb.org/)
5. Setup the `config.json` file in `exchange/config` to connect to your local SQL instance. (look at `config-example.json`)
6. Create the `exchange_dev` database with the username & password you set in `config.json`
7. Run the SequelizeJS migrations and seeders to create the tables and insert test data.
```
npx sequelize-cli db:migrate
npx sequelize-cli db:seed:all
```
8. Run the site locally
```
npm start
```

Site should load from http://localhost:3000