Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/brandoncardoso/exchange
- Owner: brandoncardoso
- Created: 2019-05-06T05:21:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-14T19:23:48.000Z (almost 5 years ago)
- Last Synced: 2024-11-08T10:09:06.275Z (about 2 months ago)
- Topics: expressjs, javascript, nodejs, sequelizejs, website
- Language: JavaScript
- Homepage:
- Size: 95.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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