Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thatconference/registrationserver
https://github.com/thatconference/registrationserver
firebase nodejs thatconference tito
Last synced: about 13 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/thatconference/registrationserver
- Owner: ThatConference
- License: apache-2.0
- Created: 2017-03-30T12:08:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-02-12T10:41:06.000Z (almost 3 years ago)
- Last Synced: 2024-04-14T09:32:27.121Z (7 months ago)
- Topics: firebase, nodejs, thatconference, tito
- Language: JavaScript
- Size: 1.01 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Registration Server
### .env
You need to setup local var's to get things wired up and working against the different services.
### straight node setup and run.
1. `npm install`
2. `npm start`You can also just run the container itself.
### Testing
TBD### Containers
Running a container in dev mode.
`docker-compose up` will build a new container, mount in your local source and run it. `docker-compose up -d` will just run in the background.Building a new container from the compose file.
```
docker-compose build
```Build from the dockerfile itself.
Build an image [namespace/containername:tag]:
```
docker build -t [thatconference/that-registration-server:tag] .
```Tag and ReTag:
```
docker tag [source name:tag] [target name:tag]` | `docker tag [imageId] [target]
```Push to the docker registry:
```
docker push namespace/name:tag
```